Skip to content

Commit

Permalink
Show help message when number of launched workers is fuzzy
Browse files Browse the repository at this point in the history
  • Loading branch information
pgiraud committed Oct 10, 2024
1 parent 9c9e4e5 commit 5e7aaf5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/components/WorkersDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@ const { workersLaunchedCount, workersPlannedCount } = useNode(
<div>
<b>Workers launched: </b>
<span class="px-1">{{ workersLaunchedCount }}</span>
<em
v-if="
!node[NodeProp.WORKERS_LAUNCHED] &&
!node[NodeProp.WORKERS] &&
(!plan.isVerbose || !plan.isAnalyze)
"
class="text-warning"
>
<FontAwesomeIcon
:icon="faExclamationTriangle"
class="cursor-help"
v-tippy="getHelpMessage('fuzzy needs verbose')"
></FontAwesomeIcon>
</em>
</div>
<div
v-if="!workersLaunchedCount && node[NodeProp.WORKERS_PLANNED_BY_GATHER]"
Expand Down

0 comments on commit 5e7aaf5

Please sign in to comment.