mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 21:25:24 +00:00
Merge branch 'vuelidate_table_csv' into 'develop'
Fix no file selected error in table importer (csv/json/xml) See merge request baserow/baserow!3195
This commit is contained in:
commit
1dc9a16030
3 changed files with 7 additions and 0 deletions
web-frontend/modules/database/components/table
|
@ -228,7 +228,10 @@ export default {
|
|||
* when the CSV doesn't have any entries the appropriate error will be shown.
|
||||
*/
|
||||
async reload() {
|
||||
const fileName = this.values.filename
|
||||
this.resetImporterState()
|
||||
this.values.filename = fileName
|
||||
|
||||
this.state = 'parsing'
|
||||
await this.$ensureRender()
|
||||
|
||||
|
|
|
@ -167,7 +167,9 @@ export default {
|
|||
},
|
||||
async reload() {
|
||||
let json
|
||||
const fileName = this.values.filename
|
||||
this.resetImporterState()
|
||||
this.values.filename = fileName
|
||||
|
||||
try {
|
||||
const decoder = new TextDecoder(this.encoding)
|
||||
|
|
|
@ -148,7 +148,9 @@ export default {
|
|||
}
|
||||
},
|
||||
async reload() {
|
||||
const fileName = this.values.filename
|
||||
this.resetImporterState()
|
||||
this.values.filename = fileName
|
||||
this.state = 'parsing'
|
||||
await this.$ensureRender()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue