diff --git a/source/Ox.UI/js/Form/Label.js b/source/Ox.UI/js/Form/Label.js index d11a67ff..9ce78c69 100644 --- a/source/Ox.UI/js/Form/Label.js +++ b/source/Ox.UI/js/Form/Label.js @@ -47,7 +47,7 @@ Ox.Label = function(options, self) { }, { textAlign: self.options.textAlign })) - .html(self.options.title); + .html(Ox.isUndefined(self.options.title) ? '' : self.options.title); return that;