1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +12:00

Automation list sort alphabetically by name #7565

This commit addresses issue #7565 (mine). Automations are currently sorted by internal ID and not by name, which makes it slightly harder to find an automation from a user's point of view.
This commit is contained in:
R2bEEaton 2022-09-01 06:15:34 -04:00 committed by GitHub
parent 65f2426cd4
commit 8550b7a34d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@
</script>
<div class="automations-list">
{#each $automationStore.automations as automation, idx}
{#each _.orderBy($automationStore.automations, ['name'], ['asc']) as automation, idx}
<NavItem
border={idx > 0}
icon="ShareAndroid"