We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7455275 + 30c9048 commit 43f52fdCopy full SHA for 43f52fd
src/columns/isoDateColumn.tsx
@@ -48,6 +48,7 @@ IsoDateComponent.displayName = 'IsoDateComponent'
48
export const isoDateColumn: Partial<Column<string | null, any, string>> = {
49
component: IsoDateComponent as CellComponent<string | null, any>,
50
deleteValue: () => null,
51
+ copyValue: ({ rowData }) => rowData,
52
// Because the Date constructor works using iso format, we can use it to parse ISO string back to a Date object
53
pasteValue: ({ value }) => {
54
const date = new Date(value.replace(/\.\s?|\//g, '-'))
0 commit comments