Correct for over-zealous sdist editor field display code
authordbwells <dbwells@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 24 Jan 2011 23:03:15 +0000 (23:03 +0000)
committerdbwells <dbwells@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 24 Jan 2011 23:03:15 +0000 (23:03 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@19273 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/xul/staff_client/server/serial/sdist_editor.js

index 95fd9a5..4dc7326 100644 (file)
@@ -109,8 +109,8 @@ serial.sdist_editor.prototype = {
 
     'render_call_number' : function(cn) {
         var obj = this;
-        if (cn === null) {
-            return "<Unset>";
+        if (cn == null) { // true for both 'null' AND undefined
+            return '';
         } else if (typeof cn != 'object') {
             return obj.acn_label_map[cn];
         } else {
@@ -120,8 +120,8 @@ serial.sdist_editor.prototype = {
 
     'render_unit_template' : function(ut) {
         var obj = this;
-        if (ut === null) {
-            return "<Unset>";
+        if (ut == null) { // true for both 'null' AND undefined
+            return '';
         } else if (typeof ut != 'object') {
             return obj.act_name_map[ut];
         } else {
@@ -132,8 +132,8 @@ serial.sdist_editor.prototype = {
     'render_record_entry' : function(sre) {
         var obj = this;
         var sre_id;
-        if (sre === null) {
-            return "<Unset>";
+        if (sre == null) { // true for both 'null' AND undefined
+            return '';
         } else if (typeof sre != 'object') {
             sre_id = sre;
         } else {