1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-14 16:55:21 +02:00

Sort available filters options in custom filters

(cherry picked from commit 9e694c7b06c6d54fd652792fa1d81cc27ec1f311)
This commit is contained in:
Mark McDowall 2022-12-19 22:51:01 -08:00 committed by Bogdan
parent 7226cab3d8
commit 78ae059f3d

View File

@ -214,7 +214,7 @@ class FilterBuilderRow extends Component {
key: availablePropFilter.name,
value: availablePropFilter.label
};
});
}).sort((a, b) => a.value.localeCompare(b.value));
const ValueComponent = getRowValueConnector(selectedFilterBuilderProp);