mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
Added indexer to history and tooltip to series view radio buttons
This commit is contained in:
parent
52f12c15a6
commit
20e72ca103
4 changed files with 13 additions and 5 deletions
|
@ -16,10 +16,10 @@ define(
|
|||
var icon;
|
||||
var toolTip;
|
||||
|
||||
switch (this.cellValue) {
|
||||
switch (this.cellValue.get('eventType')) {
|
||||
case 'grabbed':
|
||||
icon = 'icon-cloud-download';
|
||||
toolTip = 'Episode grabbed from indexer and sent to download client';
|
||||
toolTip = 'Episode grabbed from {0} and sent to download client'.format(this.cellValue.get('data').indexer);
|
||||
break;
|
||||
case 'seriesFolderImported':
|
||||
icon = 'icon-hdd';
|
||||
|
|
|
@ -25,9 +25,10 @@ define(
|
|||
columns:
|
||||
[
|
||||
{
|
||||
name : 'eventType',
|
||||
label: '',
|
||||
cell : EventTypeCell
|
||||
name : 'eventType',
|
||||
label : '',
|
||||
cell : EventTypeCell,
|
||||
cellValue: 'this'
|
||||
},
|
||||
{
|
||||
name : 'series',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue