Merge pull request #309 from shariquerik/description-in-task-list
fix: render description in task list view correctly
This commit is contained in:
commit
1b29c6d13a
@ -85,6 +85,11 @@
|
|||||||
<div>{{ item.timeAgo }}</div>
|
<div>{{ item.timeAgo }}</div>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
v-else-if="column.type === 'Text Editor'"
|
||||||
|
v-html="item"
|
||||||
|
class="truncate text-base h-4 [&>p]:truncate"
|
||||||
|
/>
|
||||||
<div v-else-if="column.type === 'Check'">
|
<div v-else-if="column.type === 'Check'">
|
||||||
<FormControl
|
<FormControl
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
@ -233,7 +238,7 @@ const listBulkActionsRef = ref(null)
|
|||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
customListActions: computed(
|
customListActions: computed(
|
||||||
() => listBulkActionsRef.value?.customListActions
|
() => listBulkActionsRef.value?.customListActions,
|
||||||
),
|
),
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user