Browse Source

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.
pull/7566/head
R2bEEaton 4 years ago
committed by GitHub
parent
commit
8550b7a34d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/builder/src/components/automation/AutomationPanel/AutomationList.svelte

2
packages/builder/src/components/automation/AutomationPanel/AutomationList.svelte

@ -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"

Loading…
Cancel
Save