Files
windmill/frontend/src/lib/components/OauthScopes.svelte
T
Ruben Fiszel 6d047449e2 feat: add otlp support (#4869)
* all

* all

* add otel

* add otel

* update docker-image

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update
2024-12-07 16:29:20 +01:00

44 lines
875 B
Svelte

<script lang="ts">
import { Button } from './common'
import { Minus, Plus } from 'lucide-svelte'
export let scopes: string[] = []
</script>
{#if scopes && Array.isArray(scopes)}
{#each scopes as v}
<div class="flex flex-row max-w-md mb-2">
<input type="text" bind:value={v} />
<Button
variant="border"
color="light"
size="xs"
btnClasses="mx-6"
on:click={() => {
scopes = scopes.filter((el) => el != v)
}}
startIcon={{ icon: Minus }}
iconOnly
/>
</div>
{/each}
{/if}
<div class="flex items-center mt-1">
<Button
variant="border"
color="light"
hover="yo"
size="sm"
endIcon={{ icon: Plus }}
on:click={() => {
scopes = (scopes ?? []).concat('')
}}
>
Add item
</Button>
<span class="ml-2 text-sm text-tertiary">
({(scopes ?? []).length} item{(scopes ?? []).length > 1 ? 's' : ''})
</span>
</div>