From e7b5e7f5e046670cb192eb1fbd42ff50bccf1d20 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sat, 23 May 2015 20:31:20 +0200 Subject: [PATCH] webui: general config - use only one checkbox type, fixes #2874 --- src/webui/static/app/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/static/app/config.js b/src/webui/static/app/config.js index 354d306c5..b4c120a6a 100644 --- a/src/webui/static/app/config.js +++ b/src/webui/static/app/config.js @@ -106,12 +106,12 @@ tvheadend.miscconf = function(panel, index) { * Time/Date */ - var tvhtimeUpdateEnabled = new Ext.form.Checkbox({ + var tvhtimeUpdateEnabled = new Ext.ux.form.XCheckbox({ name: 'tvhtime_update_enabled', fieldLabel: 'Update time' }); - var tvhtimeNtpEnabled = new Ext.form.Checkbox({ + var tvhtimeNtpEnabled = new Ext.ux.form.XCheckbox({ name: 'tvhtime_ntp_enabled', fieldLabel: 'Enable NTP driver' }); -- 2.47.2