kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
fix(ui): fixing errors
rodzic
b81b5d9e54
commit
ea4fcbb3c2
|
@ -338,7 +338,7 @@ fetchOwnedApps()
|
|||
/>
|
||||
</div>
|
||||
<Button
|
||||
is-loading="true"
|
||||
:is-loading="isLoading"
|
||||
type="submit"
|
||||
>
|
||||
{{ t('components.auth.Settings.button.updateSettings') }}
|
||||
|
|
|
@ -260,7 +260,6 @@ const paginateOptions = computed(() => sortedUniq([12, 30, 50, paginateBy.value]
|
|||
<Modal
|
||||
v-model:show="showSubscribeModal"
|
||||
title="t('components.library.Podcasts.modal.subscription.header')"
|
||||
<!-- class="tiny" TODO: check if necessary -->
|
||||
>
|
||||
<div
|
||||
ref="modalContent"
|
||||
|
|
|
@ -22,7 +22,7 @@ const handleClick = (event: MouseEvent) => {
|
|||
<slot name="image" />
|
||||
</div>
|
||||
<div class="pill-content">
|
||||
<slot />
|
||||
<slot name="pill-content" />
|
||||
</div>
|
||||
</button>
|
||||
</template>
|
||||
|
|
|
@ -38,9 +38,9 @@ const uploads = useUploadsStore()
|
|||
color="secondary"
|
||||
variant="ghost"
|
||||
/>
|
||||
|
||||
//TODO: Replace button with link because navigate is not working on new Button
|
||||
<RouterLink to="/upload" custom v-slot="{ navigate, isExactActive }">
|
||||
<Button
|
||||
<button
|
||||
icon="bi:upload"
|
||||
color="secondary"
|
||||
variant="ghost"
|
||||
|
@ -59,7 +59,7 @@ const uploads = useUploadsStore()
|
|||
/>
|
||||
</div>
|
||||
</Transition>
|
||||
</Button>
|
||||
</button>
|
||||
</RouterLink>
|
||||
|
||||
<Button
|
||||
|
|
|
@ -68,14 +68,12 @@ fetchLibraries()
|
|||
fetchChannels()
|
||||
|
||||
const libraryCreated = (library: Library) => {
|
||||
router.SpEush({ name: 'library.detail', params: { id: library.uuid } })
|
||||
router.push({ name: 'library.detail', params: { id: library.uuid } })
|
||||
}
|
||||
|
||||
// LIBRARIES END
|
||||
|
||||
|
||||
const { t } = useI18n()
|
||||
|
||||
const labels = computed(() => ({
|
||||
title: t('views.content.Home.title')
|
||||
}))
|
||||
|
|
Ładowanie…
Reference in New Issue