Skip to content

Commit

Permalink
Merge pull request #1766 from ProcessMaker/observation/FOUR-19877
Browse files Browse the repository at this point in the history
FOUR-19877 | Truncate Template Name on Screen Template Cards
  • Loading branch information
ryancooley authored Oct 29, 2024
2 parents bd632ad + 77e498d commit 35572fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/ScreenTemplateCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@
<hr class="card-divider" />
<b-card-body class="p-1">
<div class="template-details">
<span class="template-name d-block pt-1">{{ template.name }}</span>
<span class="template-name d-block pt-1">{{
truncateText(template.name, 45)
}}</span>
<span class="template-description d-block">{{
truncateText(template.description, 100)
truncateText(template.description, 60)
}}</span>
</div>
<b-collapse v-model="isApplyOptionsActive">
Expand Down

0 comments on commit 35572fb

Please sign in to comment.