From 5017f10497bf925f4a21ad2d8ecc8e2195b62b7b Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Fri, 10 Oct 2014 20:41:13 +0200 Subject: [PATCH] WEBUI: Fix the storage for profile builders, fixes #2360 --- src/webui/static/app/esfilter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/static/app/esfilter.js b/src/webui/static/app/esfilter.js index c71ad0c4..b89e89e2 100644 --- a/src/webui/static/app/esfilter.js +++ b/src/webui/static/app/esfilter.js @@ -2,7 +2,7 @@ * Stream Profiles, Elementary Stream Filters */ -tvheadend.caclient_builders = new Ext.data.JsonStore({ +tvheadend.profile_builders = new Ext.data.JsonStore({ url: 'api/profile/builders', root: 'entries', fields: ['class', 'caption', 'props'], @@ -28,7 +28,7 @@ tvheadend.esfilter_tab = function(panel) titleS: 'Stream Profile', select: { label: 'Type', - store: tvheadend.caclient_builders, + store: tvheadend.profile_builders, displayField: 'caption', valueField: 'class', propField: 'props',