adata-ui 2.0.14 → 2.0.15
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.
|
@@ -118,7 +118,7 @@ function isCurrentModule(currentModule: string) {
|
|
|
118
118
|
<div class="flex gap-[10px] divide-x divide-gray-500/50">
|
|
119
119
|
<div class="flex flex-col gap-5 w-[290px]">
|
|
120
120
|
<nav-list
|
|
121
|
-
v-for="module in filteredItems.slice(0,
|
|
121
|
+
v-for="module in filteredItems.slice(0,3)"
|
|
122
122
|
:id="module.key"
|
|
123
123
|
:key="module.key"
|
|
124
124
|
:current-module="pageUrl.hostname.startsWith(isCurrentModule(module.key))"
|
|
@@ -130,7 +130,7 @@ function isCurrentModule(currentModule: string) {
|
|
|
130
130
|
</div>
|
|
131
131
|
<div class="flex flex-col gap-5 w-[290px] pl-[10px]">
|
|
132
132
|
<nav-list
|
|
133
|
-
v-for="module in filteredItems.slice(
|
|
133
|
+
v-for="module in filteredItems.slice(3,6)"
|
|
134
134
|
:id="module.key"
|
|
135
135
|
:key="module.key"
|
|
136
136
|
:current-module="pageUrl.hostname.startsWith(isCurrentModule(module.key))"
|
|
@@ -142,7 +142,7 @@ function isCurrentModule(currentModule: string) {
|
|
|
142
142
|
</div>
|
|
143
143
|
<div class="flex flex-col gap-5 w-[330px] pl-[10px]">
|
|
144
144
|
<nav-list
|
|
145
|
-
v-for="module in filteredItems.slice(
|
|
145
|
+
v-for="module in filteredItems.slice(6,8)"
|
|
146
146
|
:id="module.key"
|
|
147
147
|
:key="module.key"
|
|
148
148
|
:current-module="pageUrl.hostname.startsWith(isCurrentModule(module.key))"
|