mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-08 18:39:40 +00:00
Sort config flow picker (#3170)
This commit is contained in:
@@ -8,3 +8,6 @@ export const compare = (a: string, b: string) => {
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
export const caseInsensitiveCompare = (a: string, b: string) =>
|
||||
compare(a.toLowerCase(), b.toLowerCase());
|
||||
|
||||
Reference in New Issue
Block a user