From c9a5752be23b9a5c293a9d4d609a3ec29dbc83e1 Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 26 Sep 2011 22:39:07 +0200 Subject: [PATCH] Setting labels --- couchpotato/static/scripts/page/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() }) },