Skip to content

Commit 80a477f

Browse files
committed
Revert "v1.4.2-patch.2 - update"
This reverts commit 25c54a1.
1 parent 1278c41 commit 80a477f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/TaskRow.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<script setup lang="ts">
22
import { ref, onMounted, onUnmounted, computed, watch, useSlots } from 'vue'
3-
import type { CSSProperties } from 'vue'
43
import { useI18n } from '../composables/useI18n'
54
import { formatPredecessorDisplay } from '../utils/predecessorUtils'
65
import type { Task } from '../models/classes/Task'
@@ -36,7 +35,7 @@ interface Props {
3635
hoveredTaskId?: number | null
3736
onHover?: (taskId: number | null) => void
3837
columns: TaskListColumnConfig[]
39-
getColumnWidthStyle?: (column: { width?: number | string }) => CSSProperties
38+
getColumnWidthStyle?: (column: { width?: number | string }) => object
4039
}
4140
const props = defineProps<Props>()
4241
const emit = defineEmits([

0 commit comments

Comments
 (0)