R2bEEaton
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
packages/builder/src/components/automation/AutomationPanel/AutomationList.svelte
|
|
|
@ -5,7 +5,7 @@ |
|
|
|
import NavItem from "components/common/NavItem.svelte" |
|
|
|
import EditAutomationPopover from "./EditAutomationPopover.svelte" |
|
|
|
import { notifications } from "@budibase/bbui" |
|
|
|
import _ from 'lodash' |
|
|
|
import _ from "lodash" |
|
|
|
|
|
|
|
$: selectedAutomationId = $automationStore.selectedAutomation?.automation?._id |
|
|
|
|
|
|
|
@ -24,7 +24,7 @@ |
|
|
|
</script> |
|
|
|
|
|
|
|
<div class="automations-list"> |
|
|
|
{#each _.orderBy($automationStore.automations, ['name'], ['asc']) as automation, idx} |
|
|
|
{#each _.orderBy($automationStore.automations, ["name"], ["asc"]) as automation, idx} |
|
|
|
<NavItem |
|
|
|
border={idx > 0} |
|
|
|
icon="ShareAndroid" |
|
|
|
|