fix(front): h1 in page headers
This commit is contained in:
parent
8e5ddbfa1b
commit
fdfda9ca3e
|
@ -128,7 +128,7 @@ const paginateOptions = computed(() => sortedUniq([12, 30, 50, paginateBy.value]
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Layout stack main v-title="labels.title">
|
<Layout stack main v-title="labels.title">
|
||||||
<h2>{{ t('components.library.Albums.header.browse') }}</h2>
|
<h1>{{ t('components.library.Albums.header.browse') }}</h1>
|
||||||
<Layout form flex
|
<Layout form flex
|
||||||
:class="['ui', {'loading': isLoading}, 'form']"
|
:class="['ui', {'loading': isLoading}, 'form']"
|
||||||
@submit.prevent="search"
|
@submit.prevent="search"
|
||||||
|
|
|
@ -129,9 +129,9 @@ const paginateOptions = computed(() => sortedUniq([12, 30, 50, paginateBy.value]
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Layout stack main v-title="labels.title">
|
<Layout stack main v-title="labels.title">
|
||||||
<h2>
|
<h1>
|
||||||
{{ t('components.library.Artists.header.browse') }}
|
{{ t('components.library.Artists.header.browse') }}
|
||||||
</h2>
|
</h1>
|
||||||
<Layout form flex
|
<Layout form flex
|
||||||
:class="['ui', {'loading': isLoading}, 'form']"
|
:class="['ui', {'loading': isLoading}, 'form']"
|
||||||
@submit.prevent="search"
|
@submit.prevent="search"
|
||||||
|
|
Loading…
Reference in New Issue