Skip to content

Commit

Permalink
Use flex-gapx-1 to space label and extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Sep 27, 2023
1 parent 54f4363 commit b6f7ecf
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions client/src/components/Workflow/Editor/NodeOutput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -320,10 +320,12 @@ const removeTagsAction = computed(() => {
@click="onToggleVisible">
<i :class="['mark-terminal', visibleClass]" />
</div>
<span v-b-tooltip :title="labelToolTipTitle" :class="labelClass">
{{ label }}
</span>
<span class="ml-1"> ({{ extensions.join(", ") }}) </span>
<div class="d-flex flex-gapx-1">
<span v-b-tooltip :title="labelToolTipTitle" :class="labelClass">
{{ label }}
</span>
<span>({{ extensions.join(", ") }}) </span>
</div>
</div>

<div
Expand Down

0 comments on commit b6f7ecf

Please sign in to comment.