diff --git a/couchpotato/static/scripts/page/settings.js b/couchpotato/static/scripts/page/settings.js index 2c5ca29f..46558f2d 100644 --- a/couchpotato/static/scripts/page/settings.js +++ b/couchpotato/static/scripts/page/settings.js @@ -238,7 +238,7 @@ var OptionBase = new Class({ createLabel: function(){ var self = this; return new Element('label', { - 'text': (self.options.label || self.options.name).capitalize() + 'text': (self.options.label || self.options.name.replace('_', ' ')).capitalize() }) },