Skip to content

Commit

Permalink
MID-8553: change button 'Exit wizard' to 'Back' for governance and me…
Browse files Browse the repository at this point in the history
…mber panel of role wizard
  • Loading branch information
skublik committed Oct 3, 2023
1 parent b3d72a9 commit 34e1781
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,18 @@ protected IModel<String> getSubTextModel() {
protected String getCssForWidthOfFeedbackPanel() {
return "col-11";
}

@Override
protected boolean isExitButtonVisible() {
return false;
}

@Override
protected boolean isBackButtonVisible() {
return true;
}

protected IModel<String> getExitLabel() {
return getPageBase().createStringResource("PageBase.button.back");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,18 @@ protected IModel<String> getSubTextModel() {
protected String getCssForWidthOfFeedbackPanel() {
return "col-11";
}

@Override
protected boolean isExitButtonVisible() {
return false;
}

@Override
protected boolean isBackButtonVisible() {
return true;
}

protected IModel<String> getExitLabel() {
return getPageBase().createStringResource("PageBase.button.back");
}
}

0 comments on commit 34e1781

Please sign in to comment.