From: Chris Sharp Date: Tue, 25 Sep 2018 18:44:07 +0000 (-0400) Subject: LP#1772062 - set "" values to "null" X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b8645ca5b930d59122395af8278e0fc75e3701d7;p=working%2FEvergreen.git LP#1772062 - set "" values to "null" Signed-off-by: Chris Sharp --- diff --git a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js index 04b19638af..6b346c30e4 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js @@ -351,7 +351,7 @@ function(egCore , $q) { var field_name = curr_field["field"]; if ( field_name == null ) { continue; } - if ( curr_field["value"] == "" ) { continue; } + if ( curr_field["value"] == "" ) { curr_field["value"] = "null"; } // floating changed from a boolean to an integer at one point; // take this opportunity to remove the boolean from any old templates