Fix date cells in sheets
This commit is contained in:
parent
b1f2fe326a
commit
30e1ecd67f
|
@ -224,7 +224,7 @@
|
||||||
sticky={column.idx === 0}
|
sticky={column.idx === 0}
|
||||||
reorderSource={$reorder.columnIdx === column.idx}
|
reorderSource={$reorder.columnIdx === column.idx}
|
||||||
reorderTarget={$reorder.swapColumnIdx === column.idx}
|
reorderTarget={$reorder.swapColumnIdx === column.idx}
|
||||||
on:mousedown={column.idx === 123
|
on:mousedown={column.idx === 0
|
||||||
? null
|
? null
|
||||||
: e => reorder.actions.startReordering(column.idx, e)}
|
: e => reorder.actions.startReordering(column.idx, e)}
|
||||||
width={column.width}
|
width={column.width}
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
<CoreDatePicker
|
<CoreDatePicker
|
||||||
{value}
|
{value}
|
||||||
on:change={e => onChange(e.detail)}
|
on:change={e => onChange(e.detail)}
|
||||||
appendTo={document.getElementById("flatpickr-root")}
|
appendTo={document.documentElement}
|
||||||
enableTime={!dateOnly}
|
enableTime={!dateOnly}
|
||||||
{timeOnly}
|
{timeOnly}
|
||||||
time24hr
|
time24hr
|
||||||
|
|
Loading…
Reference in New Issue