mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
New: Blacklist added to UI (under history)
This commit is contained in:
parent
953e59d7e3
commit
2cd347b829
15 changed files with 355 additions and 10 deletions
|
@ -97,7 +97,7 @@ define(
|
|||
title : 'Refresh',
|
||||
icon : 'icon-refresh',
|
||||
ownerContext : this,
|
||||
callback : this._refreshLogs
|
||||
callback : this._refreshTable
|
||||
},
|
||||
|
||||
{
|
||||
|
@ -117,7 +117,7 @@ define(
|
|||
}));
|
||||
},
|
||||
|
||||
_refreshLogs: function (buttonContext) {
|
||||
_refreshTable: function (buttonContext) {
|
||||
this.collection.state.currentPage = 1;
|
||||
var promise = this.collection.fetch({ reset: true });
|
||||
|
||||
|
@ -128,7 +128,7 @@ define(
|
|||
|
||||
_commandComplete: function (options) {
|
||||
if (options.command.get('name') === 'clearlog') {
|
||||
this._refreshLogs();
|
||||
this._refreshTable();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue