mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-06 00:16:41 +01:00
Rename protocols to artistStatusList
(cherry picked from commit d8446c2d5ac64d56caff1aecb719cad833ff63f3)
This commit is contained in:
parent
a8a87c00d7
commit
aaf025033e
1 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
import FilterBuilderRowValue from './FilterBuilderRowValue';
|
||||
|
||||
const protocols = [
|
||||
const artistStatusList = [
|
||||
{ id: 'continuing', name: 'Continuing' },
|
||||
{ id: 'ended', name: 'Inactive' }
|
||||
];
|
||||
|
|
@ -9,7 +9,7 @@ const protocols = [
|
|||
function ArtistStatusFilterBuilderRowValue(props) {
|
||||
return (
|
||||
<FilterBuilderRowValue
|
||||
tagList={protocols}
|
||||
tagList={artistStatusList}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue