@saooti/octopus-sdk 36.0.16 → 36.0.17
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
|
@@ -97,7 +97,7 @@ export default defineComponent({
|
|
|
97
97
|
return (true ===this.authenticated && this.myOrganisationId === this.filterOrgaUsed) ||true===state.generalParameters.isAdmin;
|
|
98
98
|
},
|
|
99
99
|
liveRight(): boolean {
|
|
100
|
-
return (state.generalParameters.isRoleLive as boolean)&& true===this.authOrganisation.attributes?.['live.active'];
|
|
100
|
+
return (state.generalParameters.isRoleLive as boolean)&& "true"===this.authOrganisation.attributes?.['live.active'];
|
|
101
101
|
},
|
|
102
102
|
isPodcastmaker(): boolean {
|
|
103
103
|
return (state.generalParameters.podcastmaker as boolean);
|
|
@@ -102,12 +102,12 @@ export default defineComponent({
|
|
|
102
102
|
ParticipantDescription
|
|
103
103
|
},
|
|
104
104
|
|
|
105
|
+
mixins: [imageProxy],
|
|
106
|
+
|
|
105
107
|
props: {
|
|
106
108
|
radio: { default: undefined, type: Object as ()=>Canal},
|
|
107
109
|
},
|
|
108
|
-
|
|
109
|
-
mixins: [imageProxy],
|
|
110
|
-
|
|
110
|
+
|
|
111
111
|
data() {
|
|
112
112
|
return {
|
|
113
113
|
planning: {} as {[key: number]:Array<{podcast: Podcast, occurrence: PlanningOccurrence|PlanningLive}>},
|