fix(typo)
This commit is contained in:
parent
11dcd8db19
commit
d122f7cdf4
|
@ -231,7 +231,7 @@ const isOpen = computed({
|
||||||
small
|
small
|
||||||
primary
|
primary
|
||||||
@click="store.commit('ui/toggleModal', 'subscribe')"
|
@click="store.commit('ui/toggleModal', 'subscribe')"
|
||||||
:aria-pressed="store.state.ui.modalsOpen.has('subscribe') || undefine"
|
:aria-pressed="store.state.ui.modalsOpen.has('subscribe') || undefined"
|
||||||
>
|
>
|
||||||
<template #image>
|
<template #image>
|
||||||
<i class="bi bi-plus" style="font-size: 100px; position: relative; top: 50px;" />
|
<i class="bi bi-plus" style="font-size: 100px; position: relative; top: 50px;" />
|
||||||
|
@ -244,7 +244,7 @@ const isOpen = computed({
|
||||||
small
|
small
|
||||||
primary
|
primary
|
||||||
@click="store.commit('ui/toggleModal', 'upload')"
|
@click="store.commit('ui/toggleModal', 'upload')"
|
||||||
:aria-pressed="store.state.ui.modalsOpen.has('upload') || undefine"
|
:aria-pressed="store.state.ui.modalsOpen.has('upload') || undefined"
|
||||||
>
|
>
|
||||||
<template #image>
|
<template #image>
|
||||||
<i class="bi bi-upload" style="font-size: 100px; position: relative; top: 50px;" />
|
<i class="bi bi-upload" style="font-size: 100px; position: relative; top: 50px;" />
|
||||||
|
|
Loading…
Reference in New Issue