Skip to content

Commit 25c54a1

Browse files
committed
v1.4.2-patch.2 - update
1 parent 1b17d50 commit 25c54a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/TaskRow.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
22
import { ref, onMounted, onUnmounted, computed, watch, useSlots } from 'vue'
3+
import type { CSSProperties } from 'vue'
34
import { useI18n } from '../composables/useI18n'
45
import { formatPredecessorDisplay } from '../utils/predecessorUtils'
56
import type { Task } from '../models/classes/Task'
@@ -35,7 +36,7 @@ interface Props {
3536
hoveredTaskId?: number | null
3637
onHover?: (taskId: number | null) => void
3738
columns: TaskListColumnConfig[]
38-
getColumnWidthStyle?: (column: { width?: number | string }) => object
39+
getColumnWidthStyle?: (column: { width?: number | string }) => CSSProperties
3940
}
4041
const props = defineProps<Props>()
4142
const emit = defineEmits([

0 commit comments

Comments
 (0)