1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

Fix issue when currentAsset is null and fix overflow when no screens for current role

This commit is contained in:
Andrew Kingston 2022-03-21 15:21:29 +00:00
parent 3b7f59323e
commit 3d0328e65e
2 changed files with 3 additions and 4 deletions

View file

@ -33,7 +33,7 @@ export const selectedComponentPath = derived(
[store, currentAsset],
([$store, $currentAsset]) => {
return findComponentPath(
$currentAsset.props,
$currentAsset?.props,
$store.selectedComponentId
).map(component => component._id)
}

View file

@ -55,11 +55,10 @@
}
</script>
<div class="root">
<div class="root" class:has-screens={!!paths?.length}>
{#each paths as path, idx (path)}
<PathTree border={idx > 0} {path} route={routes[path]} />
{/each}
{#if !paths.length}
<div class="empty">
There aren't any screens configured with this access role.
@ -68,7 +67,7 @@
</div>
<style>
.root {
.root.has-screens {
min-width: max-content;
}
div.empty {