WEBUI: Fix the storage for profile builders, fixes #2360

This commit is contained in:
Jaroslav Kysela 2014-10-10 20:41:13 +02:00
parent 930bd978b4
commit 5017f10497

View file

@ -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',