Fix missing translation when deleting lists

(this was broken in prod since this was introduced, amazing!)
This commit is contained in:
Andreas Nedbal 2021-12-28 21:29:08 +01:00
parent 493451c777
commit 6df040eece
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ export function destroyListHandler(event: Event): void {
const list = button.dataset.list;
swal({
title: I18n.translate('frontend.list.title'),
text: I18n.translate('frontend.list.text'),
title: I18n.translate('frontend.list.confirm.title'),
text: I18n.translate('frontend.list.confirm.text'),
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",