Merge branch 'master' into addSeasonInfo

# Conflicts:
#	client/components/modals/podcast/NewModal.vue
This commit is contained in:
mfcar 2023-02-23 00:06:21 +00:00
commit cc62a20a5d
No known key found for this signature in database
9 changed files with 56 additions and 12 deletions

View file

@ -0,0 +1,17 @@
<template>
<span v-if="explicit" class="material-icons ml-1" style="font-size: 0.8rem">explicit</span>
</template>
<script>
export default {
props: {
explicit: Boolean
},
data() {
return {}
},
computed: {},
methods: {},
mounted() {}
}
</script>