webui: Fix mistake in previous update to iptv.js
This commit is contained in:
parent
ed5d7e4977
commit
777e4108b9
1 changed files with 2 additions and 2 deletions
|
@ -113,10 +113,10 @@ tvheadend.iptv = function(adapterId) {
|
|||
editable : false,
|
||||
mode : 'local',
|
||||
triggerAction : 'all',
|
||||
store : tvheadend.servicetypeStore
|
||||
store : servicetypeStore
|
||||
}),
|
||||
renderer : function(value, metadata, record, row, col, store) {
|
||||
var val = value ? tvheadend.servicetypeStore.getById(value) : null;
|
||||
var val = value ? servicetypeStore.getById(value) : null;
|
||||
return val ? val.get('str')
|
||||
: '<span class="tvh-grid-unset">Unset</span>';
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue