diff --git a/apps/app/app/components/project/CreateVariables.vue b/apps/app/app/components/project/CreateVariables.vue index a9091290..a1330010 100644 --- a/apps/app/app/components/project/CreateVariables.vue +++ b/apps/app/app/components/project/CreateVariables.vue @@ -191,6 +191,10 @@ const autoUppercase = useCookie('autoUppercase', { watch: true, default: () => true, }) + +const handlePasswordGenerated = (password: string, index: number) => { + variablesInput.value.variables[index].value = password +}