This commit is contained in:
centdix
2026-02-05 15:41:58 +01:00
committed by GitHub
parent 90c532dd74
commit 41cdec75d6
4 changed files with 7 additions and 9 deletions

View File

@@ -22988,11 +22988,10 @@ components:
- flow
- job
AssetUsageAccessType:
type: string
enum:
- r
- w
- rw
oneOf:
- type: string
enum: [r, w, rw]
- type: 'null'
AssetKind:
type: string
enum:

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import { type AssetUsageAccessType } from 'windmill-utils-internal/dist/gen/types.gen'
import { type AssetUsageAccessType } from '$lib/gen'
import { formatAssetAccessType } from './lib'
import Tooltip from '../meltComponents/Tooltip.svelte'
import { twMerge } from 'tailwind-merge'

View File

@@ -8,7 +8,7 @@
import { createToggleGroup, melt } from '@melt-ui/svelte'
interface Props {
id?: string | null | undefined
selected?: string | string[] | undefined
selected?: string | string[] | null | undefined
noWFull?: boolean
disabled?: boolean
tabListClass?: string
@@ -56,7 +56,7 @@
const sync = createSync(states)
$effect(() => {
sync.value(selected, (v) => (selected = v))
sync.value(selected ?? undefined, (v) => (selected = v))
})
</script>

View File

@@ -606,7 +606,6 @@ components:
- java
- ruby
- duckdb
- bunnative
# for related places search: ADD_NEW_LANG
path:
type: string