Skip to content

Commit 08243cb

Browse files
committed
feat: add workspace name column for systemShare API type in TriggerRecordDrawer
1 parent eaa4a7f commit 08243cb

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

ui/src/views/tool/execution-record/TriggerRecordDrawer.vue

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,15 @@
114114
<span v-else>{{ $t('views.trigger.title') }}</span>
115115
</template>
116116
</el-table-column>
117-
117+
<el-table-column
118+
v-if="apiType === 'systemShare'"
119+
prop="workspace_name"
120+
:label="$t('views.workspace.title')"
121+
>
122+
<template #default="{ row }">
123+
{{ row.workspace_name }}
124+
</template>
125+
</el-table-column>
118126
<el-table-column prop="state" :label="$t('common.status.label')" width="180">
119127
<template #default="{ row }">
120128
<el-text class="color-text-primary" v-if="row.state === 'SUCCESS'">

0 commit comments

Comments
 (0)