From 5e9e52f83112c66da62426c9d42827cd6c6681c6 Mon Sep 17 00:00:00 2001 From: Peter Olu Date: Thu, 19 May 2022 09:06:23 +0100 Subject: [PATCH] modifeid log colum variale to have a prop of visible --- src/views/dashboard/related/components/LogTable/data.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/views/dashboard/related/components/LogTable/data.ts b/src/views/dashboard/related/components/LogTable/data.ts index 58009b25..23da65e2 100644 --- a/src/views/dashboard/related/components/LogTable/data.ts +++ b/src/views/dashboard/related/components/LogTable/data.ts @@ -19,34 +19,42 @@ export const ServiceLogConstants = [ { label: "serviceName", value: "service", + isVisible: true }, { label: "serviceInstanceName", value: "instance", + isVisible: true }, { label: "endpointName", value: "endpoint", + isVisible: false }, { label: "timestamp", value: "time", + isVisible: true }, { label: "contentType", value: "contentType", + isVisible: true }, { label: "tags", value: "tags", + isVisible: false }, { label: "content", value: "content", + isVisible: true }, { label: "traceId", value: "traceID", + isVisible: false }, ]; export const ServiceLogDetail = [