1
0
Fork 0
mirror of synced 2024-07-20 05:35:58 +12:00
budibase/packages/builder/src/components/backend/DataTable/buttons/HideAutocolumnButton.svelte

14 lines
335 B
Svelte
Raw Normal View History

2021-02-17 02:56:40 +13:00
<script>
import { ActionButton } from "@budibase/bbui"
2021-02-17 02:56:40 +13:00
export let hideAutocolumns
2021-02-17 02:56:40 +13:00
function hideOrUnhide() {
hideAutocolumns = !hideAutocolumns
}
</script>
<ActionButton icon="MagicWand" primary size="S" quiet on:click={hideOrUnhide}>
{#if hideAutocolumns}Show auto columns{:else}Hide auto columns{/if}
</ActionButton>