Fixing issue stopping view test from creating tables.
This commit is contained in:
parent
df1e15dd55
commit
db01275483
|
@ -23,14 +23,14 @@
|
|||
schema,
|
||||
name: $views.selected?.name,
|
||||
}
|
||||
$: type = $tables.selected.type
|
||||
$: type = $tables.selected?.type
|
||||
$: isInternal = type === "internal"
|
||||
|
||||
// Fetch rows for specified table
|
||||
$: {
|
||||
loading = true
|
||||
const loadingTableId = $tables.selected?._id
|
||||
api.fetchDataForTable($tables.selected._id).then(rows => {
|
||||
api.fetchDataForTable($tables.selected?._id).then(rows => {
|
||||
loading = false
|
||||
|
||||
// If we started a slow request then quickly change table, sometimes
|
||||
|
|
Loading…
Reference in New Issue