From 8dcef80d130d2fdfa047c94a491787fac3ae7b6f Mon Sep 17 00:00:00 2001
From: "S.Listl" <S.Listl@SLISTL.aditosoftware.local>
Date: Fri, 24 Jan 2020 11:20:44 +0100
Subject: [PATCH] Boolean dropDownProcess -> 2D array

---
 .../entityfields/isactive/dropDownProcess.js              | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/entity/Employee_entity/entityfields/isactive/dropDownProcess.js b/entity/Employee_entity/entityfields/isactive/dropDownProcess.js
index 7ae1ab2b4f..f95b9eb83d 100644
--- a/entity/Employee_entity/entityfields/isactive/dropDownProcess.js
+++ b/entity/Employee_entity/entityfields/isactive/dropDownProcess.js
@@ -1,7 +1,7 @@
 import("system.translate");
 import("system.result");
 
-result.object({
-    "true" : translate.text("Yes"),
-    "false" : translate.text("No")
-});
\ No newline at end of file
+result.object([
+    ["true", translate.text("Yes")],
+    ["false", translate.text("No")]
+]);
\ No newline at end of file
-- 
GitLab