mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 05:56:40 +00:00
feat: add validation rules for csv import(in progress)
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
@@ -63,10 +63,11 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
_change(file) {
|
||||
const files = file.target.files
|
||||
_change(event) {
|
||||
const files = event.target.files
|
||||
if (files && files[0]) {
|
||||
this.$emit('file', files[0])
|
||||
event.target.value = ''
|
||||
}
|
||||
},
|
||||
dropHandler(ev) {
|
||||
|
||||
Reference in New Issue
Block a user