1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-03-14 00:21:31 +01:00
audiobookshelf/client/components/widgets/AlreadyInLibraryIndicator.vue
advplyr 33eae1e03a Fix:Server crash on podcast add page, adds API endpoint to get podcast titles
- Instead of loading all podcast library items this page now loads only the needed data
2024-10-11 16:55:09 -05:00

17 lines
329 B
Vue

<template>
<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 {
data() {
return {}
},
computed: {},
methods: {},
mounted() {}
}
</script>