diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/ui/widget.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js index f906d165c..d46bbd8aa 100644 --- a/install/ui/widget.js +++ b/install/ui/widget.js @@ -1615,6 +1615,7 @@ IPA.table_widget = function (spec) { if (!select_set) { value = record[that.value_attr_name]; + value = value ? value.toString() : ''; $('input[name="'+that.name+'"]', tr).val(value); } |