fix: correct capitalization in view all text
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 9s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 9s
This commit is contained in:
parent
6abf8389a1
commit
dd2861010e
2 changed files with 3 additions and 3 deletions
|
|
@ -248,7 +248,7 @@ export default {
|
||||||
unread: 'Unread',
|
unread: 'Unread',
|
||||||
all: 'All',
|
all: 'All',
|
||||||
read: 'Read',
|
read: 'Read',
|
||||||
viewALL: 'View All',
|
viewAll: 'View All',
|
||||||
markAsRead: 'Mark as Read',
|
markAsRead: 'Mark as Read',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -322,7 +322,7 @@ onMounted(async () => {
|
||||||
<q-btn
|
<q-btn
|
||||||
rounded
|
rounded
|
||||||
padding="0px 10px"
|
padding="0px 10px"
|
||||||
class="text-weight-medium"
|
class="text-weight-medium text-capitalize"
|
||||||
v-for="(btn, index) in notiMenu"
|
v-for="(btn, index) in notiMenu"
|
||||||
:flat="!btn.active"
|
:flat="!btn.active"
|
||||||
:unelevated="btn.active"
|
:unelevated="btn.active"
|
||||||
|
|
@ -407,7 +407,7 @@ onMounted(async () => {
|
||||||
flat
|
flat
|
||||||
dense
|
dense
|
||||||
color="info"
|
color="info"
|
||||||
class="full-width"
|
class="full-width text-capitalize"
|
||||||
@click="() => $router.push('/notification')"
|
@click="() => $router.push('/notification')"
|
||||||
>
|
>
|
||||||
{{ $t('noti.viewAll') }}
|
{{ $t('noti.viewAll') }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue