From b98fa58e18ab09e7b2ebb539d5f6078001b0400f Mon Sep 17 00:00:00 2001 From: Jamie V Date: Tue, 22 Apr 2025 13:07:22 -0700 Subject: [PATCH] in table config component add name to headers if it does not exist so it can be hidden --- .../telemetryTable/components/table-configuration.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/plugins/telemetryTable/components/table-configuration.vue b/src/plugins/telemetryTable/components/table-configuration.vue index 8d7ed3eca0..5a5defd522 100644 --- a/src/plugins/telemetryTable/components/table-configuration.vue +++ b/src/plugins/telemetryTable/components/table-configuration.vue @@ -104,6 +104,15 @@ export default { }, methods: { updateHeaders(headers) { + // add name column if it doesn't exist, + // it's always the first column when it's manually added + if (!headers.name) { + headers = { + name: 'Name', + ...headers + }; + } + this.headers = headers; }, toggleColumn(key) {