Fix: visible-Flag für Scan-Müll, editierbare Hostname/Port/HTTPS, Sidebar fixiert, Suche nur bei Eingabe

This commit is contained in:
2026-07-19 12:27:45 +02:00
parent d65897b8e1
commit 20ea4d382d
12 changed files with 238 additions and 44 deletions

View File

@@ -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 {

View File

@@ -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>;

View File

@@ -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>