Commit 2b419857 authored by Xiaowu Zhang's avatar Xiaowu Zhang

erp5_web_renderjs_ui: don't fail when uid is not validate

parent 6bffa0b9
...@@ -577,6 +577,11 @@ ...@@ -577,6 +577,11 @@
if (Object.keys(domain_tree_map).length !== 0) {\n if (Object.keys(domain_tree_map).length !== 0) {\n
createDomainTree(gadget, domain_tree_map, domain_tree_query_list[i].value);\n createDomainTree(gadget, domain_tree_map, domain_tree_query_list[i].value);\n
}\n }\n
//if there has an error in uid\n
if (domain_tree_map[domain_tree_query_list[i].value] === undefined) {\n
domain_tree_map = {};\n
break;\n
}\n
domain_tree_map = domain_tree_map[domain_tree_query_list[i].value].sub_categories;\n domain_tree_map = domain_tree_map[domain_tree_query_list[i].value].sub_categories;\n
}\n }\n
if (Object.keys(domain_tree_map).length !== 0) {\n if (Object.keys(domain_tree_map).length !== 0) {\n
...@@ -789,7 +794,7 @@ ...@@ -789,7 +794,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>946.26033.17518.45738</string> </value> <value> <string>946.27361.45605.54152</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -807,7 +812,7 @@ ...@@ -807,7 +812,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1444745422.24</float> <float>1444825245.7</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment