@sierra-95/svelte-scaffold 1.0.41 → 1.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
|
|
68
68
|
</script>
|
|
69
69
|
<nav id="sierra-menu">
|
|
70
|
-
{#each sections as section, i}
|
|
70
|
+
{#each sections.filter(section => !section.hidden) as section, i}
|
|
71
71
|
{#if section.label}
|
|
72
72
|
<div style="width: 80%;">
|
|
73
73
|
<h3 style="font-size:small; {isMenuOpen? '':'display:none;'}">{section.label}</h3>
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
</div>
|
|
76
76
|
{/if}
|
|
77
77
|
|
|
78
|
-
{#each section.items
|
|
78
|
+
{#each section.items as item}
|
|
79
79
|
<a title={item.label}
|
|
80
80
|
href={item.children ? 'javascript:void(0)' : item.path}
|
|
81
81
|
on:click={() => {
|