v1.4.2-patch.2 - update

This commit is contained in:
LINING-PC\lining
2025-11-11 12:29:55 +08:00
parent 1b17d50bcd
commit 25c54a1982
+2 -1
View File
@@ -1,5 +1,6 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, computed, watch, useSlots } from 'vue'
import type { CSSProperties } from 'vue'
import { useI18n } from '../composables/useI18n'
import { formatPredecessorDisplay } from '../utils/predecessorUtils'
import type { Task } from '../models/classes/Task'
@@ -35,7 +36,7 @@ interface Props {
hoveredTaskId?: number | null
onHover?: (taskId: number | null) => void
columns: TaskListColumnConfig[]
getColumnWidthStyle?: (column: { width?: number | string }) => object
getColumnWidthStyle?: (column: { width?: number | string }) => CSSProperties
}
const props = defineProps<Props>()
const emit = defineEmits([