diff options
Diffstat (limited to 'install/ui/widget.js')
-rw-r--r-- | install/ui/widget.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js index 744e6ed4..8680086e 100644 --- a/install/ui/widget.js +++ b/install/ui/widget.js @@ -1007,14 +1007,12 @@ IPA.column = function (spec) { var that = {}; - if (spec.format){ - that.format = spec.format; - } that.name = spec.name; that.label = spec.label; that.primary_key = spec.primary_key; that.width = spec.width; that.entity_name = spec.entity_name; + that.format = spec.format; that.setup = spec.setup || setup; |