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.
active
1 parent a9d9419 commit e21239eCopy full SHA for e21239e
client/src/components/WorkflowInvocationState/WorkflowInvocationState.vue
@@ -369,15 +369,15 @@ async function onCancel() {
369
<BNavItem
370
title="Report"
371
class="invocation-report-tab"
372
- :active="props.tab === 'report'"
+ :active="!tabsDisabled && props.tab === 'report'"
373
:to="`/workflows/invocations/${props.invocationId}/report`"
374
:disabled="tabsDisabled">
375
Report
376
</BNavItem>
377
378
title="Export"
379
class="invocation-export-tab"
380
- :active="props.tab === 'export'"
+ :active="!tabsDisabled && props.tab === 'export'"
381
:to="`/workflows/invocations/${props.invocationId}/export`"
382
383
Export
0 commit comments