diff --git a/src/components/Table/index.js b/src/components/Table/index.js index c1564271..e6921f48 100644 --- a/src/components/Table/index.js +++ b/src/components/Table/index.js @@ -166,10 +166,16 @@ const Table = () => { }) { const options = React.useMemo(() => { const options = new Set(); + preFilteredRows.forEach(row => { options.add(row.values[id]); }); - return [...options.values()]; + + if (id === 'difficulty') { + return [...options.values()]; + } + + return [...options.values()].sort(); }, [id, preFilteredRows]); return (