Add: episode edit dropdowns

This commit is contained in:
Nicholas Wallace 2024-10-14 19:17:07 -07:00
parent 13dd4edd6a
commit 5228f669c0
5 changed files with 34 additions and 12 deletions

View file

@ -156,7 +156,12 @@ export default {
return this.selectedFolder.fullPath
},
podcastTypes() {
return this.$store.state.globals.podcastTypes || []
return this.$store.state.globals.podcastTypes.map((e) => {
return {
text: this.$strings[e.descriptionKey] || e.text,
value: e.value
}
})
}
},
methods: {