@saooti/octopus-sdk 30.0.29 → 30.0.30
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 +2 -1
- package/package.json +1 -1
- package/src/components/display/emission/EmissionList.vue +0 -1
- package/src/components/display/live/LiveHorizontalList.vue +0 -1
- package/src/components/display/participant/ParticipantItem.vue +1 -1
- package/src/components/display/participant/ParticipantList.vue +3 -0
- package/src/components/display/podcasts/PodcastList.vue +0 -1
package/README.md
CHANGED
|
@@ -526,4 +526,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
526
526
|
* 30.0.26 Css + Accessibilité
|
|
527
527
|
* 30.0.27 Top bar responsive
|
|
528
528
|
* 30.0.28 Limiter caractères des commentaires
|
|
529
|
-
* 30.0.29 Pour podcastmaker sudPresse
|
|
529
|
+
* 30.0.29 Pour podcastmaker sudPresse
|
|
530
|
+
* 30.0.30 Problème fetch participants
|
package/package.json
CHANGED
|
@@ -96,6 +96,9 @@ export default defineComponent({
|
|
|
96
96
|
methods: {
|
|
97
97
|
async fetchContent(reset: boolean): Promise<void> {
|
|
98
98
|
this.loading = true;
|
|
99
|
+
if (reset) {
|
|
100
|
+
this.dfirst = 0;
|
|
101
|
+
}
|
|
99
102
|
const data = await octopusApi.fetchParticipants({
|
|
100
103
|
first: this.dfirst,
|
|
101
104
|
size: this.dsize,
|