We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaa4a7f commit 08243cbCopy full SHA for 08243cb
ui/src/views/tool/execution-record/TriggerRecordDrawer.vue
@@ -114,7 +114,15 @@
114
<span v-else>{{ $t('views.trigger.title') }}</span>
115
</template>
116
</el-table-column>
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>
126
<el-table-column prop="state" :label="$t('common.status.label')" width="180">
127
<template #default="{ row }">
128
<el-text class="color-text-primary" v-if="row.state === 'SUCCESS'">
0 commit comments