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