1
0
Fork 0
mirror of synced 2024-06-17 18:04:42 +12:00

resolving requested change

This commit is contained in:
R2bEEaton 2022-09-01 07:15:25 -04:00 committed by GitHub
parent c0c6f34e4a
commit f53f23d6ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,6 @@
import NavItem from "components/common/NavItem.svelte"
import EditAutomationPopover from "./EditAutomationPopover.svelte"
import { notifications } from "@budibase/bbui"
import _ from "lodash"
$: selectedAutomationId = $automationStore.selectedAutomation?.automation?._id
@ -24,7 +23,7 @@
</script>
<div class="automations-list">
{#each _.orderBy($automationStore.automations, ["name"], ["asc"]) as automation, idx}
{#each $automationStore.automations.sort(aut => aut.name) as automation, idx}
<NavItem
border={idx > 0}
icon="ShareAndroid"