1
0
Fork 0
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 
This commit is contained in:
Przemyslaw Kukulski 2025-03-07 09:57:04 +00:00
commit 1dc9a16030
3 changed files with 7 additions and 0 deletions
web-frontend/modules/database/components/table

View file

@ -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()

View file

@ -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)

View file

@ -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()