mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-06 01:47:28 +00:00
fix: avoid throwing error from $poller.subscribe
This commit is contained in:
@@ -229,8 +229,12 @@ const createSource = async () => {
|
||||
$e('a:base:create:extdb')
|
||||
|
||||
if (baseId.value) {
|
||||
await loadProject(baseId.value, true)
|
||||
await loadProjectTables(baseId.value, true)
|
||||
try {
|
||||
await loadProject(baseId.value, true)
|
||||
await loadProjectTables(baseId.value, true)
|
||||
} catch (_e: any) {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
emit('sourceCreated')
|
||||
|
||||
Reference in New Issue
Block a user