diff --git a/src/frontend/devops-pipeline/src/components/ExecDetail/plugin.vue b/src/frontend/devops-pipeline/src/components/ExecDetail/plugin.vue index 1a92b306337..182b5240cc9 100644 --- a/src/frontend/devops-pipeline/src/components/ExecDetail/plugin.vue +++ b/src/frontend/devops-pipeline/src/components/ExecDetail/plugin.vue @@ -190,7 +190,7 @@ }, properties: { handler (newValue) { - if (JSON.stringify(newValue) === JSON.stringify(['CONFIG', 'LOG', 'ARTIFACT'])) { + if (newValue.join('') === ['CONFIG', 'LOG', 'ARTIFACT'].join('')) { this.tabList = [ { name: 'setting', show: true }, { name: 'log', show: true },