forgot one
This commit is contained in:
parent
edad84b0b6
commit
30e4ea64c7
|
@ -473,7 +473,7 @@ fetchOwnedApps()
|
|||
|
||||
<button
|
||||
class="ui icon button"
|
||||
@click="$store.dispatch('moderation/fetchContentFilters')"
|
||||
@click="store.dispatch('moderation/fetchContentFilters')"
|
||||
>
|
||||
<i class="refresh icon" />
|
||||
{{ t('components.auth.Settings.button.refresh') }}
|
||||
|
@ -495,7 +495,7 @@ fetchOwnedApps()
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr
|
||||
v-for="filter in $store.getters['moderation/artistFilters']()"
|
||||
v-for="filter in store.getters['moderation/artistFilters']()"
|
||||
:key="filter.uuid"
|
||||
>
|
||||
<td>
|
||||
|
@ -509,7 +509,7 @@ fetchOwnedApps()
|
|||
<td>
|
||||
<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') }}
|
||||
</button>
|
||||
|
@ -725,7 +725,7 @@ fetchOwnedApps()
|
|||
{{ t('components.auth.Settings.description.changeEmail') }}
|
||||
</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>
|
||||
<form
|
||||
class="ui form"
|
||||
|
|
Loading…
Reference in New Issue