You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/frontend/src/Components/Filter/Builder/HistoryEventTypeFilterBuild...

39 lines
660 B

import React from 'react';
import FilterBuilderRowValue from './FilterBuilderRowValue';
import FilterBuilderRowValueProps from './FilterBuilderRowValueProps';
const EVENT_TYPE_OPTIONS = [
{
id: 1,
name: 'Grabbed',
},
{
id: 3,
name: 'Imported',
},
{
id: 4,
name: 'Failed',
},
{
id: 5,
name: 'Deleted',
},
{
id: 6,
name: 'Renamed',
},
{
id: 7,
name: 'Ignored',
},
];
function HistoryEventTypeFilterBuilderRowValue(
props: FilterBuilderRowValueProps
) {
return <FilterBuilderRowValue {...props} tagList={EVENT_TYPE_OPTIONS} />;
}
export default HistoryEventTypeFilterBuilderRowValue;