From 0225da19c2b4a7a7f6ed69b2ce33c61e6cde48af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20B=C3=BClow?= Date: Fri, 6 Jan 2023 21:12:58 +0100 Subject: [PATCH] fixed bug where password change would display the object type instead --- src/lib/PasswordButton.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/PasswordButton.svelte b/src/lib/PasswordButton.svelte index ee874d2..bcae323 100644 --- a/src/lib/PasswordButton.svelte +++ b/src/lib/PasswordButton.svelte @@ -18,7 +18,7 @@ function copyToClipboard() { ); } -function updatePassword(password) { +function updatePassword(e: Event) { globalPassword.set(password) }