Pass proper sweetalert options for delete actions

This commit is contained in:
Andreas Nedbal 2022-01-03 04:37:34 +01:00 committed by Andreas Nedbal
parent 3ef2c15267
commit 707cba8ede
1 changed files with 12 additions and 12 deletions

View File

@ -32,12 +32,12 @@ export function deleteAllQuestionsHandler(event: Event): void {
swal({ swal({
title: I18n.translate('frontend.inbox.confirm_all.title', { count: count }), title: I18n.translate('frontend.inbox.confirm_all.title', { count: count }),
text: I18n.translate('frontend.inbox.confirm_all.text'), text: I18n.translate('frontend.inbox.confirm_all.text'),
icon: 'warning', type: "warning",
dangerMode: true, showCancelButton: true,
buttons: [ confirmButtonColor: "#DD6B55",
I18n.translate('views.actions.cancel'), confirmButtonText: I18n.translate('views.actions.delete'),
I18n.translate('views.actions.delete') cancelButtonText: I18n.translate('views.actions.cancel'),
] closeOnConfirm: true
}, (returnValue) => { }, (returnValue) => {
if (returnValue === null) return false; if (returnValue === null) return false;
@ -66,12 +66,12 @@ export function deleteAllAuthorQuestionsHandler(event: Event): void {
swal({ swal({
title: I18n.translate('frontend.inbox.confirm_all.title', { count: count }), title: I18n.translate('frontend.inbox.confirm_all.title', { count: count }),
text: I18n.translate('frontend.inbox.confirm_all.text'), text: I18n.translate('frontend.inbox.confirm_all.text'),
icon: 'warning', type: "warning",
dangerMode: true, showCancelButton: true,
buttons: [ confirmButtonColor: "#DD6B55",
I18n.translate('views.actions.cancel'), confirmButtonText: I18n.translate('views.actions.delete'),
I18n.translate('views.actions.delete') cancelButtonText: I18n.translate('views.actions.cancel'),
] closeOnConfirm: true
}, (returnValue) => { }, (returnValue) => {
if (returnValue === null) return false; if (returnValue === null) return false;