From 67ac9b00ff9465b14bba3884ad18440ed85d7108 Mon Sep 17 00:00:00 2001 From: kuaifan <36875852+kuaifan@users.noreply.github.com> Date: Sun, 19 Oct 2025 16:50:17 +0800 Subject: [PATCH] feat(gui): Optimize the data table column header style to prevent line breaks (#1497) --- easytier-web/frontend-lib/src/components/Status.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/easytier-web/frontend-lib/src/components/Status.vue b/easytier-web/frontend-lib/src/components/Status.vue index 63df868..52addef 100644 --- a/easytier-web/frontend-lib/src/components/Status.vue +++ b/easytier-web/frontend-lib/src/components/Status.vue @@ -466,4 +466,8 @@ function showEventLogs() { .p-timeline :deep(.p-timeline-event-opposite) { @apply flex-none; } + +:deep(.p-datatable .p-datatable-column-title) { + white-space: nowrap; +}