@saooti/octopus-sdk 30.0.84 → 30.0.85
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/README.md
CHANGED
|
@@ -580,4 +580,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
580
580
|
* 30.0.81 DownloadId player
|
|
581
581
|
* 30.0.82 Cherry pick Color Qr code
|
|
582
582
|
* 30.0.83 Locales parlement
|
|
583
|
-
* 30.0.84 Une émission non visible n'apparaît pas dans la page émission
|
|
583
|
+
* 30.0.84 Une émission non visible n'apparaît pas dans la page émission
|
|
584
|
+
* 30.0.85 PB en cliquant sur le bouton "tous les épisodes de l'organisation" dans la page d'un épisode
|
package/package.json
CHANGED
|
@@ -213,7 +213,7 @@ export default defineComponent({
|
|
|
213
213
|
},
|
|
214
214
|
methods: {
|
|
215
215
|
handleSeeMoreButton(event: { preventDefault: () => void; }){
|
|
216
|
-
if(!this.rubriqueId || this.noRubriquageId.length){
|
|
216
|
+
if(!this.rubriqueId || 0===this.rubriqueId.length || this.noRubriquageId.length){
|
|
217
217
|
return;
|
|
218
218
|
}
|
|
219
219
|
event.preventDefault();
|
|
@@ -258,7 +258,9 @@ export default defineComponent({
|
|
|
258
258
|
this.totalCount = data.count;
|
|
259
259
|
if (this.allPodcasts.length + data.result.length < this.totalCount) {
|
|
260
260
|
const nexEl = data.result.pop() as Podcast;
|
|
261
|
-
|
|
261
|
+
if(nexEl){
|
|
262
|
+
this.preloadImage(nexEl.imageUrl?nexEl.imageUrl:'');
|
|
263
|
+
}
|
|
262
264
|
}
|
|
263
265
|
this.allPodcasts = this.allPodcasts.concat(
|
|
264
266
|
data.result.filter((pod: Podcast|null) => null !== pod)
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
:is-search-bar="isProductorSearch"
|
|
24
24
|
:sort-criteria="sortEmission"
|
|
25
25
|
:organisation-id="organisationId"
|
|
26
|
-
:
|
|
26
|
+
:include-hidden="includeHidden"
|
|
27
27
|
@updateCategory="updateCategory"
|
|
28
28
|
@updateRubriquageFilter="updateRubriquageFilter"
|
|
29
29
|
@updateMonetization="updateMonetization"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
:reset-rubriquage="resetRubriquage"
|
|
36
36
|
:is-search-bar="isProductorSearch"
|
|
37
37
|
:sort-criteria="sortCriteria"
|
|
38
|
-
:
|
|
38
|
+
:include-hidden="includeHidden"
|
|
39
39
|
:organisation-id="organisationId"
|
|
40
40
|
@updateCategory="updateCategory"
|
|
41
41
|
@updateRubriquageFilter="updateRubriquageFilter"
|