New: (UI) Add default `Accepted` filter for search releases

This commit is contained in:
Bogdan 2023-05-27 01:46:43 +03:00
parent e55c3f7ddf
commit ee6849b1cc
1 changed files with 11 additions and 0 deletions

View File

@ -74,6 +74,17 @@ export const defaultState = {
key: 'all',
label: translate('All'),
filters: []
},
{
key: 'accepted',
label: translate('Accepted'),
filters: [
{
key: 'rejectionCount',
value: 0,
type: filterTypes.EQUAL
}
]
}
],