mirror of
https://gitee.com/jmix/cuba.git
synced 2024-11-30 18:27:56 +08:00
Исправлена NPE возникающая при создании и последующей отмене #PL-2175
This commit is contained in:
parent
63f535be2a
commit
b2fa3d8518
@ -913,7 +913,7 @@ public class WebFilter extends WebAbstractComponent<CubaVerticalActionsLayout> i
|
||||
public void editorCancelled() {
|
||||
filterEntity = filterEntityBeforeCopy;
|
||||
filterEntityBeforeCopy = null;
|
||||
if (filterEntity.getXml() == null)
|
||||
if (filterEntity != null && filterEntity.getXml() == null)
|
||||
filterEntity = null;
|
||||
|
||||
switchToUse();
|
||||
|
Loading…
Reference in New Issue
Block a user