Files
NetMesh/domain/hostDisplay.ts

6 lines
170 B
TypeScript
Raw Permalink Normal View History

import type { Host } from './models';
export function hostDisplayTitle(host: Pick<Host, 'label' | 'hostname'>): string {
return host.label?.trim() || host.hostname;
}