1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Sort automation steps by name

This commit is contained in:
Andrew Kingston 2020-09-23 12:25:14 +01:00
parent c728329d51
commit aa47d18bb1

View file

@ -1,11 +1,14 @@
<script>
import { sortBy } from "lodash/fp"
import { automationStore } from "builderStore"
import AutomationBlock from "./AutomationBlock.svelte"
import FlatButtonGroup from "components/userInterface/FlatButtonGroup.svelte"
let selectedTab = "TRIGGER"
let buttonProps = []
$: blocks = Object.entries($automationStore.blockDefinitions[selectedTab])
$: blocks = sortBy(entry => entry[1].name)(
Object.entries($automationStore.blockDefinitions[selectedTab])
)
$: {
if ($automationStore.selectedAutomation.hasTrigger()) {
@ -37,3 +40,9 @@
{/each}
</div>
</section>
<style>
#blocklist {
margin-top: var(--spacing-xl);
}
</style>