diff options
Diffstat (limited to 'gui-editors/gui-editor-apex')
-rw-r--r-- | gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPolicyEditForm.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPolicyEditForm.js b/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPolicyEditForm.js index edaf7b7..df0ddf0 100644 --- a/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPolicyEditForm.js +++ b/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPolicyEditForm.js @@ -440,8 +440,7 @@ function editPolicyForm_activate(parent, operation, policy, tasks, events, conte break; } } - for (i = 0; i < policy.state.entry.length; i++) { - var stateEntry = policy.state.entry[i]; + for (let stateEntry of policy.state.entry) { statename = stateEntry.key; state = stateEntry.value; var stateLI = editPolicyForm_addState(statename, state, createEditOrView, policy, tasks, events, |