diff --git a/entity/Employee_entity/entityfields/isactive/dropDownProcess.js b/entity/Employee_entity/entityfields/isactive/dropDownProcess.js index 7ae1ab2b4f2ce2228273b9c5a937ebf89b3631dd..f95b9eb83d3430460a802b1393bf5ce118116704 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