Skip to content

Commit 6d3a1d7

Browse files
committed
clean
1 parent 2c7f47f commit 6d3a1d7

3 files changed

Lines changed: 15 additions & 7 deletions

File tree

packages/components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@labkey/components",
3-
"version": "6.45.1-fb-issue53071.2",
3+
"version": "6.45.1-fb-issue53071.3",
44
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
55
"sideEffects": false,
66
"files": [

packages/components/src/internal/components/editable/DateInputCell.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,18 @@ export const DateInputCell: FC<DateInputCellProps> = memo(props => {
3434

3535
const onDateInputChange = useCallback(
3636
(newDate: Date | string, formatted?: string) => {
37-
modifyCell(colIdx, rowIdx, [{
38-
raw: newDate,
39-
display: formatted
40-
}], MODIFICATION_TYPES.REPLACE, col);
37+
modifyCell(
38+
colIdx,
39+
rowIdx,
40+
[
41+
{
42+
raw: newDate,
43+
display: formatted,
44+
},
45+
],
46+
MODIFICATION_TYPES.REPLACE,
47+
col
48+
);
4149
},
4250
[col, colIdx, modifyCell, rowIdx]
4351
);

0 commit comments

Comments
 (0)