@saooti/octopus-sdk 38.0.7 → 38.0.8
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
|
@@ -75,10 +75,6 @@
|
|
|
75
75
|
{{ planningItem.podcastData.title }}
|
|
76
76
|
</div>
|
|
77
77
|
</div>
|
|
78
|
-
|
|
79
|
-
<!-- <ParticipantDescription
|
|
80
|
-
:participants="planningItem.podcast.animators"
|
|
81
|
-
/> -->
|
|
82
78
|
</div>
|
|
83
79
|
</router-link>
|
|
84
80
|
</div>
|
|
@@ -189,21 +185,7 @@ export default defineComponent({
|
|
|
189
185
|
return b.startDate > a.startDate ? -1 : 0;
|
|
190
186
|
});
|
|
191
187
|
}
|
|
192
|
-
this.planning[this.daySelected] = occurrences;
|
|
193
|
-
/*
|
|
194
|
-
this.planning[this.daySelected] = [];
|
|
195
|
-
for (let oc of occurrences) {
|
|
196
|
-
if (oc.podcastId) {
|
|
197
|
-
const data: Podcast = await octopusApi.fetchData<Podcast>(
|
|
198
|
-
0,
|
|
199
|
-
"podcast/" + oc.podcastId,
|
|
200
|
-
);
|
|
201
|
-
this.planning[this.daySelected].push({
|
|
202
|
-
podcast: data,
|
|
203
|
-
occurrence: oc,
|
|
204
|
-
});
|
|
205
|
-
}
|
|
206
|
-
} */
|
|
188
|
+
this.planning[this.daySelected] = occurrences.filter((oc) => oc.podcastId);
|
|
207
189
|
} catch {
|
|
208
190
|
this.error = true;
|
|
209
191
|
}
|