Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: EPG: Fix the clickable channel linking (autorec issue)
  • Loading branch information
perexg committed Sep 29, 2014
1 parent 05779c2 commit b528de6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/webui/static/app/epg.js
Expand Up @@ -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;
}
Expand Down

0 comments on commit b528de6

Please sign in to comment.