Fix missing translation when deleting lists
(this was broken in prod since this was introduced, amazing!)
This commit is contained in:
parent
493451c777
commit
6df040eece
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue