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 0ee637063d
commit 1ee94980ab
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>