Improve explicit label and add a AlreadyInYourLibrary indicator

This commit is contained in:
mfcar 2023-02-24 23:31:16 +00:00
parent 2db4dd6a40
commit 7a47032a96
No known key found for this signature in database
16 changed files with 89 additions and 15 deletions

View file

@ -0,0 +1,19 @@
<template>
<ui-tooltip v-if="alreadyInLibrary" :text="$strings.LabelAlreadyInYourLibrary" direction="top">
<span class="material-icons ml-1" style="font-size: 0.8rem">check_circle</span>
</ui-tooltip>
</template>
<script>
export default {
props: {
alreadyInLibrary: Boolean
},
data() {
return {}
},
computed: {},
methods: {},
mounted() {}
}
</script>