Skip to content
Snippets Groups Projects
Commit d1c6a5f3 authored by Dominik Lechner's avatar Dominik Lechner
Browse files

Prod2Prod check for operating state

parent b326fcc6
No related branches found
No related tags found
No related merge requests found
import("system.neon");
import("system.vars");
if(vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_VIEW && vars.get("$local.value")) // local.value is previous operationgstate or null. This fixes not working Filter
if(vars.get("$sys.operatingstate") != undefined
&& vars.get("$sys.operatingstate") != null
&& vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_VIEW
&& vars.get("$local.value")) // local.value is previous operationgstate or null. This fixes not working Filter
{
neon.refresh();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment