Skip to content

Commit

Permalink
fix: Fix Task Label Text truncation - MEED-2664 - Meeds-io/meeds#1065 (
Browse files Browse the repository at this point in the history
…#273)

Prior to this change, the Task label is displayed over the due date.
This change will add text truncation on labels to avoid this.
  • Loading branch information
boubaker committed Oct 6, 2023
1 parent 89c4041 commit ac66ae3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
<div
v-if="task.labels && task.labels.length"
:class="getClassLabels()"
class="text-truncate rounded"
@click="openTaskDrawer()">
<v-chip
v-if="task.labels && task.labels.length == 1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
<div
v-if="task.labels && task.labels.length"
:class="getClassLabels()"
class="text-truncate rounded"
@click="openTaskDrawer()">
<v-chip
v-if="task.labels && task.labels.length == 1"
Expand Down

0 comments on commit ac66ae3

Please sign in to comment.