From: Jaroslav Kysela Date: Mon, 29 Sep 2014 14:53:09 +0000 (+0200) Subject: WEBUI JS: EPG: Fix the clickable channel linking (autorec issue) X-Git-Tag: v4.1~1256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b528de6b05e682c8c30156e6a8d37aa56cd52a23;p=thirdparty%2Ftvheadend.git WEBUI JS: EPG: Fix the clickable channel linking (autorec issue) --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 5d03dcc20..d832bc788 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -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; }