File tree Expand file tree Collapse file tree 2 files changed +31
-20
lines changed
backend/windmill-worker/nsjail
frontend/src/lib/components Expand file tree Collapse file tree 2 files changed +31
-20
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,12 @@ mount {
37
37
mandatory: false
38
38
}
39
39
40
+ mount {
41
+ src: "/root/.local/share/uv/tools/ansible"
42
+ dst: "/root/.local/share/uv/tools/ansible"
43
+ is_bind: true
44
+ }
45
+
40
46
mount {
41
47
src: "/usr"
42
48
dst: "/usr"
Original file line number Diff line number Diff line change 448
448
bind:value
449
449
currency ={extra ?.currency }
450
450
locale ={extra ?.currencyLocale ?? ' en-US' }
451
+ {disabled }
451
452
/>
452
453
{:else }
453
454
<div class =" relative w-full" >
982
983
</div >
983
984
{:else if inputCat == ' date' }
984
985
{#if format === ' date' }
985
- <DateInput {autofocus } bind:value dateFormat ={extra ?.[' dateFormat' ]} />
986
+ <DateInput {disabled } { autofocus } bind:value dateFormat ={extra ?.[' dateFormat' ]} />
986
987
{:else }
987
- <DateTimeInput useDropdown {autofocus } bind:value />
988
+ <DateTimeInput { disabled } useDropdown {autofocus } bind:value />
988
989
{/if }
989
990
{:else if inputCat == ' sql' || inputCat == ' yaml' }
990
- <div class =" border my-1 mb-4 w-full border-primary" >
991
- {#await import (' $lib/components/SimpleEditor.svelte' )}
992
- <Loader2 class =" animate-spin" />
993
- {:then Module }
994
- <Module .default
995
- on:focus ={(e ) => {
996
- dispatch (' focus' )
997
- }}
998
- on:blur ={(e ) => {
999
- dispatch (' blur' )
1000
- }}
1001
- bind:this ={editor }
1002
- lang ={inputCat }
1003
- bind:code ={value }
1004
- autoHeight
1005
- />
1006
- {/await }
1007
- </div >
991
+ {#if disabled }
992
+ <textarea disabled />
993
+ {:else }
994
+ <div class =" border my-1 mb-4 w-full border-secondary" >
995
+ {#await import (' $lib/components/SimpleEditor.svelte' )}
996
+ <Loader2 class =" animate-spin" />
997
+ {:then Module }
998
+ <Module .default
999
+ on:focus ={(e ) => {
1000
+ dispatch (' focus' )
1001
+ }}
1002
+ on:blur ={(e ) => {
1003
+ dispatch (' blur' )
1004
+ }}
1005
+ bind:this ={editor }
1006
+ lang ={inputCat }
1007
+ bind:code ={value }
1008
+ autoHeight
1009
+ />
1010
+ {/await }
1011
+ </div >
1012
+ {/if }
1008
1013
{:else if inputCat == ' base64' }
1009
1014
<div class =" flex flex-col my-6 w-full" >
1010
1015
<input
You can’t perform that action at this time.
0 commit comments