Skip to content

Commit

Permalink
Fix for Accessibility, on Workflows List page Tooltip when hover over…
Browse files Browse the repository at this point in the history
… Workflow Title; Fix previously in place but likely remoed from bad merge.
  • Loading branch information
hujambo-dunia committed Aug 4, 2023
1 parent 75cc87c commit e839b63
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions client/src/components/Workflow/WorkflowDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
@dragend="onDragEnd">
<Icon icon="caret-down" class="fa-lg" />
<span class="workflow-dropdown-name">{{ workflow.name }}</span>
<span
v-if="sourceType.includes('trs')"
v-b-tooltip.hover
aria-haspopup="true"
:title="getWorkflowTooltip(sourceType, workflow)">
<Icon fixed-width icon="check" class="mr-1 workflow-trs-icon" />
</span>
<span
v-if="sourceType == 'url'"
v-b-tooltip.hover
aria-haspopup="true"
:title="getWorkflowTooltip(sourceType, workflow)">
<Icon fixed-width icon="link" class="mr-1 workflow-external-link" />
</span>
</b-link>
<span
v-if="sourceType.includes('trs')"
v-b-tooltip.hover
aria-haspopup="true"
:title="getWorkflowTooltip(sourceType, workflow)">
<Icon fixed-width icon="check" class="mr-1 workflow-trs-icon" />
</span>
<span
v-if="sourceType == 'url'"
v-b-tooltip.hover
aria-haspopup="true"
:title="getWorkflowTooltip(sourceType, workflow)">
<Icon fixed-width icon="link" class="mr-1 workflow-external-link" />
</span>
<p v-if="workflow.description" class="workflow-dropdown-description">
<TextSummary :description="workflow.description" :show-details.sync="showDetails" />
</p>
Expand Down

0 comments on commit e839b63

Please sign in to comment.