[web] Fix untranslated button

This commit is contained in:
Alain Nussbaumer
2024-04-23 21:44:35 +02:00
parent 4268f41a51
commit 7d7d38b946
7 changed files with 7 additions and 5 deletions

View File

@@ -47,6 +47,7 @@
@play-count-changed="play_count_changed()"
/>
<modal-dialog
:close_action="$t('page.podcast.cancel')"
:delete_action="$t('page.podcast.remove')"
:show="show_remove_podcast_modal"
:title="$t('page.podcast.remove-podcast')"

View File

@@ -45,7 +45,7 @@
export default {
name: 'ModalDialog',
props: {
close_action: { default: 'dialog.cancel', type: String },
close_action: { default: '', type: String },
delete_action: { default: '', type: String },
ok_action: { default: '', type: String },
show: Boolean,