mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-03-16 05:23:33 +00:00
Fix bug when additional file import completes
This commit is contained in:
parent
b8d7838801
commit
1e1f1a6c3c
2 changed files with 14 additions and 3 deletions
changelog/entries/unreleased/bug
web-frontend/modules/database/components/table
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"type": "bug",
|
||||
"message": "Fixed redirect problem in the additional importer.",
|
||||
"issue_number": null,
|
||||
"bullet_points": [],
|
||||
"created_at": "2023-10-26"
|
||||
}
|
|
@ -627,13 +627,17 @@ export default {
|
|||
database: this.database,
|
||||
data: table,
|
||||
})
|
||||
|
||||
if (this.errorReport.length === 0) {
|
||||
this.openTable()
|
||||
}
|
||||
} else {
|
||||
this.$bus.$emit('table-refresh', {
|
||||
tableId: this.job.table_id,
|
||||
})
|
||||
}
|
||||
if (this.errorReport.length === 0) {
|
||||
this.openTable()
|
||||
if (this.errorReport.length === 0) {
|
||||
this.hide()
|
||||
}
|
||||
}
|
||||
},
|
||||
onJobFailed() {
|
||||
|
|
Loading…
Reference in a new issue