1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-23 14:41:27 +00:00

Fixed: Quality Profile and Tag Import List filtering

Closes #4736
This commit is contained in:
Mark McDowall 2021-11-03 16:50:12 -07:00
parent 4e28c7d190
commit 19510c4932
2 changed files with 2 additions and 3 deletions

View file

@ -89,7 +89,6 @@ export default {
actionHandlers: { actionHandlers: {
[FETCH_IMPORT_LISTS]: createFetchHandler(section, '/importlist'), [FETCH_IMPORT_LISTS]: createFetchHandler(section, '/importlist'),
[FETCH_IMPORT_LIST_SCHEMA]: createFetchSchemaHandler(section, '/importlist/schema'), [FETCH_IMPORT_LIST_SCHEMA]: createFetchSchemaHandler(section, '/importlist/schema'),
[SAVE_IMPORT_LIST]: createSaveProviderHandler(section, '/importlist'), [SAVE_IMPORT_LIST]: createSaveProviderHandler(section, '/importlist'),
[CANCEL_SAVE_IMPORT_LIST]: createCancelSaveProviderHandler(section), [CANCEL_SAVE_IMPORT_LIST]: createCancelSaveProviderHandler(section),
[DELETE_IMPORT_LIST]: createRemoveItemHandler(section, '/importlist'), [DELETE_IMPORT_LIST]: createRemoveItemHandler(section, '/importlist'),

View file

@ -81,7 +81,7 @@ namespace NzbDrone.Core.ImportLists.Sonarr
options = profiles.OrderBy(d => d.Name, StringComparer.InvariantCultureIgnoreCase) options = profiles.OrderBy(d => d.Name, StringComparer.InvariantCultureIgnoreCase)
.Select(d => new .Select(d => new
{ {
id = d.Id, value = d.Id,
name = d.Name name = d.Name
}) })
}; };
@ -96,7 +96,7 @@ namespace NzbDrone.Core.ImportLists.Sonarr
options = tags.OrderBy(d => d.Label, StringComparer.InvariantCultureIgnoreCase) options = tags.OrderBy(d => d.Label, StringComparer.InvariantCultureIgnoreCase)
.Select(d => new .Select(d => new
{ {
id = d.Id, value = d.Id,
name = d.Label name = d.Label
}) })
}; };