@saooti/octopus-sdk 41.0.11-SNAPSHOT → 41.0.13-SNAPSHOT

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "41.0.11-SNAPSHOT",
3
+ "version": "41.0.13-SNAPSHOT",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -165,7 +165,7 @@ watch(dfirst, () =>{
165
165
 
166
166
 
167
167
  onMounted(()=>{
168
- fetchContent(true);
168
+ fetchContent(false);
169
169
  if (displayRubriquage.value) {
170
170
  fetchRubriques();
171
171
  }
@@ -115,7 +115,7 @@ watch(dfirst, () => {
115
115
  }
116
116
  });
117
117
 
118
- onBeforeMount(()=>fetchContent(true))
118
+ onBeforeMount(()=>fetchContent(false))
119
119
 
120
120
 
121
121
  //Methods
@@ -109,7 +109,7 @@ watch(dfirst, () => {
109
109
  }
110
110
  });
111
111
 
112
- onMounted(()=>fetchContent(true))
112
+ onMounted(()=>fetchContent(false))
113
113
 
114
114
 
115
115
  //Methods
@@ -162,7 +162,7 @@ watch(dfirst, () => {
162
162
  }
163
163
  });
164
164
 
165
- onBeforeMount(()=>fetchContent(true))
165
+ onBeforeMount(()=>fetchContent(false))
166
166
 
167
167
  //Methods
168
168
  async function fetchContent(reset: boolean): Promise<void> {
@@ -28,7 +28,7 @@
28
28
  "
29
29
  :filter="fakeSearch"
30
30
  :selectable="() => !maxOptionsSelected"
31
- class="h-100"
31
+ :style="{height: height }"
32
32
  :class="{ 'border border-danger': textDanger?.length }"
33
33
  @open="onSearch"
34
34
  @search="onSearch"
@@ -52,7 +52,7 @@ export const useFilterStore = defineStore("FilterStore", {
52
52
  this.filterRubrique = rubriqueFilter;
53
53
  },
54
54
  filterUpdateRubriqueDisplay(rubriques: Array<Rubrique>) {
55
- this.filterRubriqueDisplay = rubriques;
55
+ this.filterRubriqueDisplay = rubriques.filter(rubrique=> rubrique);
56
56
  },
57
57
  filterUpdateMedia(filter: {
58
58
  type?: string;