diff --git a/src/case/ztree/0.treeview.js b/src/case/ztree/0.treeview.js
index a54c8f162e..c4310caf08 100644
--- a/src/case/ztree/0.treeview.js
+++ b/src/case/ztree/0.treeview.js
@@ -336,10 +336,11 @@ BI.TreeView = BI.inherit(BI.Pane, {
         BI.each(ns, function (i, n) {
             n.isParent = n.isParent || n.parent;
             n.value = BI.isUndefined(n.value) ? n.text : n.value;
+            if (BI.isUndefined(n.text)) {
+                n.text = n.value;
+            }
             if (n.text === null) {
                 n.text = "(null)";
-            } else if (BI.isUndefined(n.text)) {
-                n.text = n.value;
             }
             if (BI.isNull(n.title)) {
                 n.title = n.text;