diff --git a/packages/ui/src/components/PopupInstance.svelte b/packages/ui/src/components/PopupInstance.svelte index 758734184f..a5dc06d121 100644 --- a/packages/ui/src/components/PopupInstance.svelte +++ b/packages/ui/src/components/PopupInstance.svelte @@ -80,7 +80,7 @@ $: { .popup { position: fixed; background-color: transparent; - backdrop-filter: blur(.5rem); + backdrop-filter: blur(30px); filter: drop-shadow(0 1.5rem 4rem rgba(0, 0, 0, .6)); } .modal-overlay { diff --git a/plugins/view-resources/src/components/KanbanView.svelte b/plugins/view-resources/src/components/KanbanView.svelte index 855e239cb5..11dec620ef 100644 --- a/plugins/view-resources/src/components/KanbanView.svelte +++ b/plugins/view-resources/src/components/KanbanView.svelte @@ -16,7 +16,7 @@ {#await buildModel(client, _class, config, options)} @@ -90,21 +83,21 @@
- {#each states as state} - { event.preventDefault() }} on:drop={(event) => { event.preventDefault() if (dragCard) { - dragCard.state = state._id + client.updateDoc(_class, space, dragCard._id, { state: state._id }) dragCard = undefined } }} > - {#each cards.filter((c) => c.state === state._id) as card} + {#each objects.filter((c) => c.state === state._id) as card} { dragCard = card