generated from Dicken/dickendock
Fix: visible-Flag für Scan-Müll, editierbare Hostname/Port/HTTPS, Sidebar fixiert, Suche nur bei Eingabe
This commit is contained in:
@@ -39,6 +39,8 @@ export interface Service {
|
||||
favorite: boolean;
|
||||
alias: string[];
|
||||
order: number;
|
||||
/** Ausgeblendete Dienste erscheinen nicht in der Suche, bleiben aber im Adminbereich sichtbar/löschbar. */
|
||||
visible: boolean;
|
||||
}
|
||||
|
||||
export interface HealthStatus {
|
||||
|
||||
@@ -40,6 +40,7 @@ export const ServiceCreateSchema = z.object({
|
||||
favorite: z.boolean().optional(),
|
||||
alias: z.array(z.string()).optional(),
|
||||
order: z.number().optional(),
|
||||
visible: z.boolean().optional(),
|
||||
});
|
||||
export type ServiceCreateInput = z.infer<typeof ServiceCreateSchema>;
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@ export function ResultsList({
|
||||
{service.displayName}
|
||||
</span>
|
||||
<span className="block truncate text-xs text-black/40 dark:text-white/40">
|
||||
{service.hostname}
|
||||
{service.hostname}:{service.port}
|
||||
</span>
|
||||
</span>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user