Skip to content

Commit

Permalink
Merge branch 'main' into fix/frontend/catch_error_saml_test
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilhem-lm authored Feb 25, 2025
2 parents e6676f6 + 3bf0bc6 commit 4b1be82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/PasswordArgInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 4b1be82

Please sign in to comment.