Fix:Server crash on podcast add page, adds API endpoint to get podcast titles #3499

- Instead of loading all podcast library items this page now loads only the needed data
This commit is contained in:
advplyr 2024-10-11 16:55:09 -05:00
parent d258b42e01
commit 33eae1e03a
4 changed files with 47 additions and 11 deletions

View file

@ -1,14 +1,11 @@
<template>
<ui-tooltip v-if="alreadyInLibrary" :text="$strings.LabelAlreadyInYourLibrary" direction="top">
<span class="material-symbols ml-1 text-success" style="font-size: 0.8rem">check_circle</span>
<ui-tooltip :text="$strings.LabelAlreadyInYourLibrary" direction="top" class="inline-flex">
<span class="material-symbols ml-1 text-sm text-success">check_circle</span>
</ui-tooltip>
</template>
<script>
export default {
props: {
alreadyInLibrary: Boolean
},
data() {
return {}
},