Skip to content

Commit

Permalink
MID-5875 menu actions for cases fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Oct 23, 2019
1 parent c9d7259 commit b8da456
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -153,7 +153,7 @@ public InlineMenuItemAction initAction() {

@Override
public void onClick(AjaxRequestTarget target) {
if (warnIfNoCaseSelected(target)){
if (getRowModel() == null && warnIfNoCaseSelected(target)){
return;
}
if (getRowModel() == null) {
Expand Down Expand Up @@ -197,7 +197,7 @@ public InlineMenuItemAction initAction() {

@Override
public void onClick(AjaxRequestTarget target) {
if (warnIfNoCaseSelected(target)){
if (getRowModel() == null && warnIfNoCaseSelected(target)){
return;
}
if (getRowModel() == null) {
Expand Down

0 comments on commit b8da456

Please sign in to comment.