WEBUI JS: EPG: Fix the clickable channel linking (autorec issue)
This commit is contained in:
parent
05779c2a0d
commit
b528de6b05
1 changed files with 3 additions and 2 deletions
|
@ -771,9 +771,10 @@ tvheadend.epg = function() {
|
|||
return false;
|
||||
}
|
||||
} else if (column.dataIndex === 'channelName') {
|
||||
var value = grid.getStore().getAt(index).data[column.dataIndex];
|
||||
var rec = grid.getStore().getAt(index).data;
|
||||
var value = rec['channelUuid'];
|
||||
if (value && epgStore.baseParams.channel !== value) {
|
||||
epgFilterChannels.setValue(value);
|
||||
epgFilterChannels.setValue(rec['channelName']);
|
||||
epgFilterChannelSet(value);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue