1
0
Fork 0
mirror of synced 2024-09-11 23:16:00 +12:00

Update user details page to use tables and match designs

This commit is contained in:
Andrew Kingston 2022-12-21 11:52:25 +00:00
parent 37a5bde2bc
commit 7526bc8387
3 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,15 @@
<script>
import { ActionButton } from "@budibase/bbui"
import { getContext } from "svelte"
export let value
const groupContext = getContext("groups")
const onClick = e => {
e.stopPropagation()
groupContext.removeGroup(value)
}
</script>
<ActionButton size="S" on:click={onClick}>Remove</ActionButton>