forgot one

This commit is contained in:
ArneBo 2024-12-07 16:37:53 +01:00 committed by upsiflu
parent edad84b0b6
commit 30e4ea64c7
1 changed files with 4 additions and 4 deletions

View File

@ -473,7 +473,7 @@ fetchOwnedApps()
<button <button
class="ui icon button" class="ui icon button"
@click="$store.dispatch('moderation/fetchContentFilters')" @click="store.dispatch('moderation/fetchContentFilters')"
> >
<i class="refresh icon" />&nbsp; <i class="refresh icon" />&nbsp;
{{ t('components.auth.Settings.button.refresh') }} {{ t('components.auth.Settings.button.refresh') }}
@ -495,7 +495,7 @@ fetchOwnedApps()
</thead> </thead>
<tbody> <tbody>
<tr <tr
v-for="filter in $store.getters['moderation/artistFilters']()" v-for="filter in store.getters['moderation/artistFilters']()"
:key="filter.uuid" :key="filter.uuid"
> >
<td> <td>
@ -509,7 +509,7 @@ fetchOwnedApps()
<td> <td>
<button <button
class="ui basic tiny button" class="ui basic tiny button"
@click="$store.dispatch('moderation/deleteContentFilter', filter.uuid)" @click="store.dispatch('moderation/deleteContentFilter', filter.uuid)"
> >
{{ t('components.auth.Settings.button.delete') }} {{ t('components.auth.Settings.button.delete') }}
</button> </button>
@ -725,7 +725,7 @@ fetchOwnedApps()
{{ t('components.auth.Settings.description.changeEmail') }} {{ t('components.auth.Settings.description.changeEmail') }}
</p> </p>
<p> <p>
{{ t('components.auth.Settings.message.currentEmail', { email: $store.state.auth.profile?.email }) }} {{ t('components.auth.Settings.message.currentEmail', { email: store.state.auth.profile?.email }) }}
</p> </p>
<form <form
class="ui form" class="ui form"