fix check (#7811)
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -606,7 +606,6 @@ components:
|
||||
- java
|
||||
- ruby
|
||||
- duckdb
|
||||
- bunnative
|
||||
# for related places search: ADD_NEW_LANG
|
||||
path:
|
||||
type: string
|
||||
|
||||
Reference in New Issue
Block a user