mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.0 KiB
55 lines
1.0 KiB
export const tableColumns: NcTableColumnProps[] = [ |
|
{ |
|
title: 'Column Name', |
|
name: 'Column Name', |
|
dataIndex: 'column_name', |
|
key: 'column_name', |
|
minWidth: 200, |
|
padding: '0px 12px', |
|
}, |
|
{ |
|
title: 'Column Type', |
|
name: 'Column Type', |
|
dataIndex: 'column_type', |
|
key: 'uidt', |
|
minWidth: 200, |
|
padding: '0px 12px', |
|
}, |
|
// { |
|
// name: 'Select Option', |
|
// key: 'dtxp', |
|
// }, |
|
{ |
|
title: '', |
|
name: 'Action', |
|
key: 'action', |
|
width: 60, |
|
minWidth: 60, |
|
padding: '0px 12px', |
|
}, |
|
] |
|
|
|
export const srcDestMappingColumns: NcTableColumnProps[] = [ |
|
{ |
|
title: 'Source column', |
|
dataIndex: 'source_column', |
|
key: 'source_column', |
|
minWidth: 200, |
|
padding: '0px 12px', |
|
}, |
|
{ |
|
title: 'Destination column', |
|
dataIndex: 'destination_column', |
|
key: 'destination_column', |
|
minWidth: 200, |
|
padding: '0px 12px', |
|
}, |
|
{ |
|
title: 'Action', |
|
key: 'action', |
|
justify: 'justify-center', |
|
width: 60, |
|
minWidth: 60, |
|
padding: '0px 12px', |
|
}, |
|
]
|
|
|