We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c43442 commit 333ee83Copy full SHA for 333ee83
src/mixins/HomeMixin.js
@@ -26,6 +26,9 @@ const HomeMixin = {
26
modalOpen() {
27
return this.$store.state.modalOpen;
28
},
29
+ pageId() {
30
+ return this.subPageInfo?.pageId ? this.subPageInfo.pageId : 'home';
31
+ },
32
33
data: () => ({
34
searchValue: '',
src/views/Home.vue
@@ -34,7 +34,7 @@
:title="section.name"
35
:icon="section.icon || undefined"
36
:displayData="getDisplayData(section)"
37
- :groupId="`section-${index}`"
+ :groupId="`${pageId}-section-${index}`"
38
:items="filterTiles(section.items, searchValue)"
39
:widgets="section.widgets"
40
:searchTerm="searchValue"
0 commit comments