@saooti/octopus-sdk 39.0.39 → 39.0.41

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": "39.0.39",
3
+ "version": "39.0.41",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
package/src/App.vue CHANGED
@@ -5,7 +5,7 @@
5
5
  <CategoryFilter v-if="firstDisplayCategoryFilter" />
6
6
  <div v-else class="category-filter-no-filter" />
7
7
  <router-view />
8
- <ClassicLazy :min-height="125">
8
+ <ClassicLazy :min-height="123">
9
9
  <FooterOctopus />
10
10
  </ClassicLazy>
11
11
  <PlayerComponent />
@@ -83,6 +83,7 @@ input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs_
83
83
  text-decoration: none !important;
84
84
  white-space: nowrap;
85
85
  border-width: 0;
86
+ min-width: 24px;
86
87
  @media (max-width: 960px) {
87
88
  white-space: normal;
88
89
  }
@@ -5,6 +5,7 @@ import { useFilterStore } from "@/stores/FilterStore";
5
5
  import { mapActions } from "pinia";
6
6
  import { defineComponent } from "vue";
7
7
  import { AxiosError } from "axios";
8
+ import { state } from "../../stores/ParamSdkStore";
8
9
  import { useSaveFetchStore } from "@/stores/SaveFetchStore";
9
10
  export default defineComponent({
10
11
  mixins: [handle403],
@@ -33,10 +34,12 @@ export default defineComponent({
33
34
  }),
34
35
  isLive: isLive,
35
36
  });
36
- const queries = this.$route.query;
37
- this.$router.replace({
38
- query: { ...queries, ...{ productor: organisationId } },
39
- });
37
+ if(!state.generalParameters.podcastmaker){
38
+ const queries = this.$route.query;
39
+ this.$router.replace({
40
+ query: { ...queries, ...{ productor: organisationId } },
41
+ });
42
+ }
40
43
  } catch (error) {
41
44
  this.handle403(error as AxiosError);
42
45
  }
@@ -5,9 +5,10 @@
5
5
  v-for="(c, index) in categories"
6
6
  :key="c.id"
7
7
  :min-height="0"
8
- :init-render-delay="3 < index ? 1000 : 0"
8
+ :init-render-delay="2 < index ? 1000 : 0"
9
9
  >
10
10
  <PodcastInlineList
11
+ style="min-height: 650px"
11
12
  :iab-id="c.id"
12
13
  :title="c.name"
13
14
  :button-text="$t('All podcast button', { name: c.name })"
@@ -22,9 +23,10 @@
22
23
  v-for="(r, index) in rubriqueToShow"
23
24
  :key="r.rubriqueId"
24
25
  :min-height="0"
25
- :init-render-delay="3 < index ? 1000 : 0"
26
+ :init-render-delay="2 < index ? 1000 : 0"
26
27
  >
27
28
  <PodcastInlineList
29
+ style="min-height: 650px"
28
30
  :rubrique-id="rubriqueId.concat(r.rubriqueId)"
29
31
  :title="r.name"
30
32
  :button-text="$t('All podcast button', { name: r.name })"