Skip to content

Commit

Permalink
add tooltip text to published icons in published Workflow grid
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Mar 18, 2024
1 parent 7eb3cc9 commit be59728
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion client/src/components/Workflow/WorkflowIndicators.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,13 @@ function onViewUserPublished() {
@click="emit('update-filter', 'published', true)">
<FontAwesomeIcon :icon="faGlobe" fixed-width />
</BButton>
<FontAwesomeIcon v-else-if="workflow.published" :icon="faGlobe" fixed-width size="sm" />
<FontAwesomeIcon
v-else-if="workflow.published"
v-b-tooltip.noninteractive.hover
title="Published workflow"
:icon="faGlobe"
fixed-width
size="sm" />

<BButton
v-if="sourceType.includes('trs')"
Expand Down

0 comments on commit be59728

Please sign in to comment.