Skip to content

Commit

Permalink
use one-line-summary version of TextSummary and adds an <hr>
Browse files Browse the repository at this point in the history
Fixes #19157 where we notice that the description could be full width instead of truncated half way, as well as the need for a visual distinction between the run form and the header annotation.
  • Loading branch information
ahmedhamidawan committed Nov 20, 2024
1 parent dd653ee commit f74204e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/components/Workflow/WorkflowAnnotation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ const workflowTags = computed(() => {
</div>
</div>
<div v-if="props.showDetails">
<TextSummary v-if="description" class="my-1" :description="description" />
<TextSummary v-if="description" class="my-1" :description="description" one-line-summary component="span" />
<StatelessTags v-if="workflowTags.length" :value="workflowTags" :disabled="true" />
<hr class="mb-0 mt-2" />
</div>
</div>
</template>

0 comments on commit f74204e

Please sign in to comment.