We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e21239e commit 2474d05Copy full SHA for 2474d05
client/src/components/WorkflowInvocationState/WorkflowInvocationState.vue
@@ -367,15 +367,15 @@ async function onCancel() {
367
Outputs
368
</BNavItem>
369
<BNavItem
370
- title="Report"
+ :title="!tabsDisabled ? 'Report' : disabledTabTooltip"
371
class="invocation-report-tab"
372
:active="!tabsDisabled && props.tab === 'report'"
373
:to="`/workflows/invocations/${props.invocationId}/report`"
374
:disabled="tabsDisabled">
375
Report
376
377
378
- title="Export"
+ :title="!tabsDisabled ? 'Export' : disabledTabTooltip"
379
class="invocation-export-tab"
380
:active="!tabsDisabled && props.tab === 'export'"
381
:to="`/workflows/invocations/${props.invocationId}/export`"
0 commit comments