fix(front): large section headings for channels page
This commit is contained in:
parent
bacad855d3
commit
e51bdb5989
|
@ -22,7 +22,6 @@ import useOrdering from '~/composables/navigation/useOrdering'
|
|||
import useLogger from '~/composables/useLogger'
|
||||
|
||||
import ChannelsWidget from '~/components/audio/ChannelsWidget.vue'
|
||||
import ArtistWidget from '~/components/artist/Widget.vue'
|
||||
import RemoteSearchForm from '~/components/RemoteSearchForm.vue'
|
||||
import ChannelForm from '~/components/audio/ChannelForm.vue'
|
||||
import Layout from '~/components/ui/Layout.vue'
|
||||
|
@ -93,7 +92,7 @@ const fetchData = async () => {
|
|||
page: page.value,
|
||||
page_size: paginateBy.value,
|
||||
q: query.value,
|
||||
ordering: orderingString.value,
|
||||
ordering: [orderingString.value] as ("creation_date" | "modification_date" | "-creation_date" | "-modification_date" | "-random" | "random")[],
|
||||
tag: tags.value
|
||||
}
|
||||
|
||||
|
@ -152,7 +151,7 @@ const showCreateModal = ref(false)
|
|||
primary: true,
|
||||
icon: 'bi-plus'
|
||||
}"
|
||||
page-heading
|
||||
large-section-heading
|
||||
/>
|
||||
<Modal
|
||||
v-model="showSubscribeModal"
|
||||
|
@ -204,11 +203,11 @@ const showCreateModal = ref(false)
|
|||
:h1="t('views.auth.ProfileOverview.header.channels')"
|
||||
:action="{
|
||||
text: t('views.channels.SubscriptionsList.link.addNew'),
|
||||
onClick: () => { showCreateModal = true },
|
||||
primary: true,
|
||||
icon: 'bi-plus'
|
||||
onClick: ()=> showCreateModal = true,
|
||||
icon: 'bi-plus',
|
||||
primary: true
|
||||
}"
|
||||
page-heading
|
||||
large-section-heading
|
||||
/>
|
||||
<Layout
|
||||
form
|
||||
|
|
Loading…
Reference in New Issue