Skip to content

Commit 2474d05

Browse files
add titles to disabled tabs in invocation view
1 parent e21239e commit 2474d05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/components/WorkflowInvocationState/WorkflowInvocationState.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,15 +367,15 @@ async function onCancel() {
367367
Outputs
368368
</BNavItem>
369369
<BNavItem
370-
title="Report"
370+
:title="!tabsDisabled ? 'Report' : disabledTabTooltip"
371371
class="invocation-report-tab"
372372
:active="!tabsDisabled && props.tab === 'report'"
373373
:to="`/workflows/invocations/${props.invocationId}/report`"
374374
:disabled="tabsDisabled">
375375
Report
376376
</BNavItem>
377377
<BNavItem
378-
title="Export"
378+
:title="!tabsDisabled ? 'Export' : disabledTabTooltip"
379379
class="invocation-export-tab"
380380
:active="!tabsDisabled && props.tab === 'export'"
381381
:to="`/workflows/invocations/${props.invocationId}/export`"

0 commit comments

Comments
 (0)