Skip to content

Commit

Permalink
Merge pull request #359 from tridz-dev/develop
Browse files Browse the repository at this point in the history
fix(ui): Calendar icon in task listview
  • Loading branch information
shariquerik committed Sep 20, 2024
2 parents ac0eae4 + 8f99b53 commit 29c709e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/components/ListViews/TasksListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@
:row="row"
>
<div v-if="column.key === 'due_date'">
<Tooltip :text="dateFormat(item, 'ddd, MMM D, YYYY | hh:mm a')">
<Tooltip
:text="item && dateFormat(item, 'ddd, MMM D, YYYY | hh:mm a')"
>
<div class="flex items-center gap-2 truncate text-base">
<CalendarIcon />
<div><CalendarIcon /></div>
<div v-if="item" class="truncate">
{{ dateFormat(item, 'D MMM, hh:mm a') }}
</div>
Expand Down

0 comments on commit 29c709e

Please sign in to comment.