mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 02:26:31 +00:00
feat: excel parser - handle date, datetime, duplicate column
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import ExcelTemplateAdapter from '~/components/import/templateParsers/ExcelTemplateAdapter'
|
||||
|
||||
export default class ExcelUrlTemplateAdapter extends ExcelTemplateAdapter {
|
||||
constructor(url, $store) {
|
||||
constructor(url, $store, parserConfig) {
|
||||
const name = url.split('/').pop()
|
||||
super(name, null)
|
||||
super(name, null, parserConfig)
|
||||
this.url = url
|
||||
this.$store = $store
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user