mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
check password input type (#5374)
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
export let disabled: boolean
|
||||
|
||||
let path = ''
|
||||
let password = value && !value.startsWith('$var:') ? value : ''
|
||||
let password = value && typeof value === 'string' && !value.startsWith('$var:') ? value : ''
|
||||
|
||||
let isGenerating = false
|
||||
async function generateValue() {
|
||||
|
||||
Reference in New Issue
Block a user