Skip to content

Commit

Permalink
Fix date / datetime value got omitted when trigger picker then exit (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Acylation authored Sep 19, 2024
1 parent 81816da commit 44a6ba2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import type { GridColDef } from "../../dataGrid";
export let value: Optional<Date>;
let cachedValue: Optional<Date>; // store the proposing value
let cachedValue: Optional<Date> = value; // store the proposing value
export let onChange: (value: Optional<Date>) => void;
export let column: GridColDef;
export let rowindex: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import type { GridColDef } from "../../dataGrid";
export let value: Optional<Date>;
let cachedValue: Optional<Date>;
let cachedValue: Optional<Date> = value; // store the proposing value
export let onChange: (value: Optional<Date>) => void;
export let column: GridColDef;
export let rowindex: number;
Expand Down

0 comments on commit 44a6ba2

Please sign in to comment.