mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
fix: improve array static editor
This commit is contained in:
@@ -156,17 +156,17 @@
|
||||
} else {
|
||||
value.push('')
|
||||
}
|
||||
componentInput = componentInput
|
||||
|
||||
if (componentInput.value) {
|
||||
let value = componentInput.value[componentInput.value.length - 1]
|
||||
if (value) {
|
||||
if (value != undefined) {
|
||||
items.push({
|
||||
value,
|
||||
id: generateRandomString()
|
||||
})
|
||||
}
|
||||
}
|
||||
componentInput = componentInput
|
||||
}
|
||||
|
||||
function deleteElementByType(index: number) {
|
||||
|
||||
Reference in New Issue
Block a user