From: erickson Date: Fri, 11 Jun 2010 21:20:46 +0000 (+0000) Subject: a null boolean value should use the label for UNSET instead of False (the default) X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a653b057b69eaac95e185fbbae66ff56d1360d02;p=working%2FEvergreen.git a null boolean value should use the label for UNSET instead of False (the default) git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6@16691 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js b/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js index d6a108c9b9..5c0ee8765c 100644 --- a/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js +++ b/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js @@ -137,6 +137,7 @@ if(!dojo._hasResource['openils.widget.AutoFieldWidget']) { case 'f' : case 'false' : return openils.widget.AutoFieldWidget.localeStrings.FALSE; + case null : case 'unset' : return openils.widget.AutoFieldWidget.localeStrings.UNSET; case true : return openils.widget.AutoFieldWidget.localeStrings.TRUE; default: return openils.widget.AutoFieldWidget.localeStrings.FALSE;