fix: admin/plugins: list order shouldn't be case-sensitive
Massimo Melina committed
Jun 13, 2025 at 18:11 UTC
7b5ed0343cbc6012bcc5a071a58441a795780541
1 file changed
+1
-1
admin/src/InstalledPlugins.ts
+1
-1
@@ -29,7 +29,7 @@ export default function InstalledPlugins({ updates }: { updates?: true }) {
29
})
30
useEffect(() => {
31
setList(list =>
32
- _.sortBy(list, x => (x.error ? 0 : x.started ? 1 : 2) + treatPluginName(x.id)))
32
+ _.sortBy(list, x => (x.error ? 0 : x.started ? 1 : 2) + treatPluginName(x.id).toLowerCase()))
33
}, [list.length]);
34
const size = 'small'
35
const { pause, pauseButton } = usePauseButton("plugins", () => getSingleConfig(CFG.suspend_plugins).then(x => !x), {