@saooti/octopus-sdk 32.0.3 → 32.0.4

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
@@ -644,4 +644,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
644
644
  * 32.0.1 Navigation clavier
645
645
  * 32.0.2 Newsletter pour emission & playlist
646
646
  * 32.0.3 Améliorations multiples
647
+ * 32.0.4 Correction erreur
647
648
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "32.0.3",
3
+ "version": "32.0.4",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -187,6 +187,7 @@
187
187
  .breadcrumb{
188
188
  padding: 1rem;
189
189
  align-items: center;
190
+ background: #FAFAFA;
190
191
  }
191
192
  .bg-secondary{
192
193
  background: #eee !important;
@@ -112,8 +112,13 @@ export default defineComponent({
112
112
  ...mapState({
113
113
  playingPodcast(state: StoreState) {
114
114
  return (
115
- (state.player.podcast?.podcastId === this.podcast.podcastId) ||
116
- ('null' !== this.fetchConference && state.player.live?.conferenceId ===this.fetchConference?.conferenceId)
115
+ (state.player.podcast &&
116
+ state.player.podcast.podcastId === this.podcast.podcastId) ||
117
+ (this.fetchConference &&
118
+ 'null' !== this.fetchConference &&
119
+ state.player.live &&
120
+ state.player.live.conferenceId ===
121
+ this.fetchConference.conferenceId)
117
122
  );
118
123
  },
119
124
  }),