Added deleted filter to history
This commit is contained in:
parent
4cbb59d4e8
commit
8acc38d9c4
|
@ -33,7 +33,8 @@ define(
|
||||||
'all' : [null, null],
|
'all' : [null, null],
|
||||||
'grabbed' : ['eventType', '1'],
|
'grabbed' : ['eventType', '1'],
|
||||||
'imported' : ['eventType', '3'],
|
'imported' : ['eventType', '3'],
|
||||||
'failed' : ['eventType', '4']
|
'failed' : ['eventType', '4'],
|
||||||
|
'deleted' : ['eventType', '5']
|
||||||
},
|
},
|
||||||
|
|
||||||
sortMappings: {
|
sortMappings: {
|
||||||
|
|
|
@ -139,6 +139,13 @@ define(
|
||||||
tooltip : 'Failed',
|
tooltip : 'Failed',
|
||||||
icon : 'icon-nd-download-failed',
|
icon : 'icon-nd-download-failed',
|
||||||
callback : this._setFilter
|
callback : this._setFilter
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key : 'deleted',
|
||||||
|
title : '',
|
||||||
|
tooltip : 'Deleted',
|
||||||
|
icon : 'icon-nd-deleted',
|
||||||
|
callback : this._setFilter
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue