Skip to content

Commit

Permalink
PageMessageTemplates: added missing delete confirmation msg (fixes 500)
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Mar 15, 2022
1 parent 0d56ee0 commit 60dd30f
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,16 @@ protected IColumn<SelectableBean<MessageTemplateType>, String> createCheckboxCol
protected List<InlineMenuItem> createInlineMenu() {
return Arrays.asList(createDeleteInlineMenu());
}

@Override
protected String getConfirmMessageKeyForMultiObject() {
return "pageMessageTemplates.message.confirmationMessageForMultipleObject";
}

@Override
protected String getConfirmMessageKeyForSingleObject() {
return "pageMessageTemplates.message.confirmationMessageForSingleObject";
}
};
table.setOutputMarkupId(true);
mainForm.add(table);
Expand Down

0 comments on commit 60dd30f

Please sign in to comment.