diff --git a/front/src/views/auth/ManageUploads.vue b/front/src/views/auth/ManageUploads.vue index 7edef6a80..5a184ec16 100644 --- a/front/src/views/auth/ManageUploads.vue +++ b/front/src/views/auth/ManageUploads.vue @@ -416,6 +416,13 @@ const getPrivacyLevelChoice = (privacyLevel: PrivacyLevel) => { {{ item.import_status }} @@ -424,6 +431,7 @@ const getPrivacyLevelChoice = (privacyLevel: PrivacyLevel) => { ghost primary round + icon="bi-info-circle-fill" :title="sharedLabels.fields.import_status.label" @click="detailedUpload = item; showUploadDetailModal = true" /> diff --git a/front/ui-docs/components/ui/pill.md b/front/ui-docs/components/ui/pill.md index 7a79e5016..f24a575b0 100644 --- a/front/ui-docs/components/ui/pill.md +++ b/front/ui-docs/components/ui/pill.md @@ -3,6 +3,8 @@ import { computed, ref } from 'vue' import Pill from '~/components/ui/Pill.vue' import Button from '~/components/ui/Button.vue' +import Spacer from '~/components/ui/Spacer.vue' +import Layout from '~/components/ui/Layout.vue' const current = ref({ type: 'custom', label: 'I-am-custom.-Change-me!' }) const others = ref([ @@ -158,6 +160,28 @@ Image pills contain a small circular image on their left. These can be used for Awesome artist +### Reduce space between image/icon and text + +```vue-html{5} + + + + Awesome artist + + +``` + + + + + Awesome artist + + + ## Editable pill Add `v-model="..."` to link the pill content to a `ref` with one `current` item and zero or more `others`. Set each item's `type` to `preset` or `custom`.