Skip to content

Commit

Permalink
fix: format frontend/src/components/ListViews/TasksListView.vue
Browse files Browse the repository at this point in the history
Co-authored-by: Shariq Ansari <[email protected]>
  • Loading branch information
pu-raihan and shariquerik committed Sep 20, 2024
1 parent 683401f commit 246569f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions frontend/src/components/ListViews/TasksListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@
<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">
<div>
<CalendarIcon />
</div>
<div><CalendarIcon /></div>
<div v-if="item" class="truncate">
{{ dateFormat(item, 'D MMM, hh:mm a') }}
</div>
Expand Down Expand Up @@ -240,7 +238,7 @@ const listBulkActionsRef = ref(null)
defineExpose({
customListActions: computed(
() => listBulkActionsRef.value?.customListActions
() => listBulkActionsRef.value?.customListActions,
),
})
</script>

0 comments on commit 246569f

Please sign in to comment.