fix: avoid throwing error from $poller.subscribe

This commit is contained in:
Ramesh Mane
2026-01-13 14:46:10 +00:00
parent 00729947a4
commit 06e5b240ee
6 changed files with 68 additions and 36 deletions

View File

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