fix: update

This commit is contained in:
Fine 2023-11-01 19:49:54 +08:00
parent 1d9045f961
commit ba0ccd81a4
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ limitations under the License. -->
<div class="log-header flex-h" :class="type === 'browser' ? ['browser-header', 'flex-h'] : 'service-header'">
<template v-for="(item, index) in columns" :key="`col${index}`">
<div :class="[item.label, ['message', 'stack'].includes(item.label) ? 'max-item' : '']">
{{ t(item.value) }}
{{ item.value && t(item.value) }}
</div>
</template>
</div>

View File

@ -26,7 +26,7 @@ export const ServiceLogConstants = [
},
{
label: "traceId",
value: "traceID",
value: "",
},
];
export const ServiceLogDetail = [