mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +00:00
treat null accordingly in arginfo
This commit is contained in:
@@ -31,7 +31,9 @@
|
||||
</DrawerContent>
|
||||
</Drawer>
|
||||
|
||||
{#if value == '<function call>'}
|
||||
{#if value == undefined || value == null}
|
||||
<span class="text-gray-600">null</span>
|
||||
{:else if value == '<function call>'}
|
||||
{'<function call>'}<Tooltip
|
||||
>The arg was none and the default argument of the script is a function call, hence the actual
|
||||
value used for this arg was the output of the script's function call for this arg</Tooltip
|
||||
|
||||
@@ -146,10 +146,10 @@
|
||||
}
|
||||
|
||||
.val.undefined {
|
||||
@apply text-red-500;
|
||||
@apply text-gray-600;
|
||||
}
|
||||
.val.null {
|
||||
@apply text-red-500;
|
||||
@apply text-gray-600;
|
||||
}
|
||||
.val.string {
|
||||
@apply text-green-600;
|
||||
|
||||
Reference in New Issue
Block a user