@saooti/octopus-sdk 30.0.60 → 30.0.61
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/pages/Podcasts.vue +4 -0
package/README.md
CHANGED
|
@@ -556,4 +556,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
556
556
|
* 30.0.57 podcastmaker Le soir améliorations
|
|
557
557
|
* 30.0.58 Prefix css dans component par octopus-app
|
|
558
558
|
* 30.0.59 Pb productorChooser
|
|
559
|
-
* 30.0.60 PlaylistPodcastInlineList
|
|
559
|
+
* 30.0.60 PlaylistPodcastInlineList
|
|
560
|
+
* 30.0.61 Page podcast -> init recherche
|
package/package.json
CHANGED
|
@@ -90,6 +90,7 @@ export default defineComponent({
|
|
|
90
90
|
props: {
|
|
91
91
|
productor: { default: undefined, type: String},
|
|
92
92
|
isEducation: { default: false, type: Boolean},
|
|
93
|
+
searchInit: { default: "", type: String}
|
|
93
94
|
},
|
|
94
95
|
|
|
95
96
|
data() {
|
|
@@ -154,6 +155,9 @@ export default defineComponent({
|
|
|
154
155
|
},
|
|
155
156
|
|
|
156
157
|
created() {
|
|
158
|
+
if(this.searchInit){
|
|
159
|
+
this.searchPattern = this.searchInit;
|
|
160
|
+
}
|
|
157
161
|
if (this.productor) {
|
|
158
162
|
this.organisationId = this.productor;
|
|
159
163
|
} else if (this.$store.state.filter.organisationId) {
|