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

possible fix for yarn lint

This commit is contained in:
R2bEEaton 2022-09-01 06:36:39 -04:00 committed by GitHub
parent 1c83caafc0
commit c0c6f34e4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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