fix(front): fix missing keys
This commit is contained in:
parent
74fe8be1c9
commit
513ad08a0a
|
@ -190,6 +190,7 @@ store.dispatch('playlists/fetchOwn')
|
||||||
<fw-button
|
<fw-button
|
||||||
color="secondary"
|
color="secondary"
|
||||||
icon="bi-pencil"
|
icon="bi-pencil"
|
||||||
|
:title="$t('components.playlists.PlaylistModal.button.edit')"
|
||||||
@click="$router.push({name: 'library.playlists.detail', params: {id: playlist.id }, query: {mode: 'edit'}})"
|
@click="$router.push({name: 'library.playlists.detail', params: {id: playlist.id }, query: {mode: 'edit'}})"
|
||||||
/>
|
/>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -71,7 +71,7 @@ const customRadioId = computed(() => props.customRadio?.id ?? null)
|
||||||
color="secondary"
|
color="secondary"
|
||||||
class="right floated"
|
class="right floated"
|
||||||
icon="bi-pencil"
|
icon="bi-pencil"
|
||||||
title="{{ $t('components.radios.Card.button.edit') }}"
|
:title="$t('components.radios.Card.button.edit')"
|
||||||
@click="$router.push({name: 'library.radios.edit', params: {id: customRadioId }})"
|
@click="$router.push({name: 'library.radios.edit', params: {id: customRadioId }})"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue