@saooti/octopus-sdk 38.0.30 → 38.0.31

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": "38.0.30",
3
+ "version": "38.0.31",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -135,7 +135,8 @@ export default defineComponent({
135
135
  "update:rubriqueSelected",
136
136
  (rubrique as Rubrique).rubriqueId,
137
137
  );
138
- } else if (undefined !== this.rubriqueSelectedArray) {
138
+ }
139
+ if (undefined !== this.rubriqueSelectedArray) {
139
140
  const idsArray: Array<number> = [];
140
141
  (rubrique as Array<Rubrique>).forEach((el: Rubrique) => {
141
142
  idsArray.push(el.rubriqueId ?? 0);