Skip to content

Commit

Permalink
fix(ui): Calendar icon of Datetime field in task listview is not rend…
Browse files Browse the repository at this point in the history
…ered correctly
  • Loading branch information
pu-raihan committed Sep 19, 2024
1 parent ac0eae4 commit 683401f
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 @@ -41,7 +41,9 @@
<div v-if="column.key === 'due_date'">
<Tooltip :text="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 Expand Up @@ -238,7 +240,7 @@ const listBulkActionsRef = ref(null)
defineExpose({
customListActions: computed(
() => listBulkActionsRef.value?.customListActions,
() => listBulkActionsRef.value?.customListActions
),
})
</script>

0 comments on commit 683401f

Please sign in to comment.