Skip to content

Commit

Permalink
fix: handle optional chaining for lsbVisible in OpsFlowContainer.vue
Browse files Browse the repository at this point in the history
Signed-off-by: Wanjin Noh <wanjin@megazone.com>
  • Loading branch information
WANZARGEN committed Jan 9, 2025
1 parent b03c42a commit 93f1196
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/services/ops-flow/OpsFlowContainer.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<fragment>
<vertical-page-layout v-if="route.meta.lsbVisible"
<vertical-page-layout v-if="route.meta?.lsbVisible"
class="ops-flow-container"
>
<template #sidebar>
Expand Down
3 changes: 2 additions & 1 deletion apps/web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"@/*": ["./src/*"],
"@cloudforet/utils": ["../../packages/utils/dist/index.d.ts"],
"@cloudforet/core-lib/*": ["../../packages/core-lib/dist/*"]
}
},
"outDir": "./dist"
},
"include": [ "./**/*.ts", "./**/*.tsx", "./**/*.vue" ],
"exclude": [
Expand Down

0 comments on commit 93f1196

Please sign in to comment.