Skip to content

Commit 8b71726

Browse files
authored
Fix workspace issue for good (baserow#4817)
1 parent 6fa00db commit 8b71726

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

web-frontend/modules/builder/pages/publicPage.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,10 @@ if (error.value) {
296296
}
297297
}
298298
299-
const workspace = computed(() => asyncDataResult.value.workspace)
300-
const builder = computed(() => asyncDataResult.value.builder)
301-
const currentPage = computed(() => asyncDataResult.value.currentPage)
302-
const path = computed(() => asyncDataResult.value.path)
303-
const params = computed(() => asyncDataResult.value.params)
304-
const mode = computed(() => asyncDataResult.value.mode)
299+
const workspace = computed(() => asyncDataResult.value?.workspace)
300+
const builder = computed(() => asyncDataResult.value?.builder)
301+
const currentPage = computed(() => asyncDataResult.value?.currentPage)
302+
const path = computed(() => asyncDataResult.value?.path)
303+
const params = computed(() => asyncDataResult.value?.params)
304+
const mode = computed(() => asyncDataResult.value?.mode)
305305
</script>

0 commit comments

Comments
 (0)