fixed bug where password change would display the object type instead

main
Johannes Bülow 2023-01-06 21:12:58 +01:00
parent c07a6ac04e
commit 21a171a451
2 changed files with 3 additions and 2 deletions

View File

@ -24,4 +24,5 @@ clean:
rm -f $(CURDIR)/src/lib/crypttool.wasm rm -f $(CURDIR)/src/lib/crypttool.wasm
rm -rf $(CURDIR)/wasm/pkg/* rm -rf $(CURDIR)/wasm/pkg/*
rm -rf $(CURDIR)/wasm/target/* rm -rf $(CURDIR)/wasm/target/*
rm -rf $(CURDIR)/node_modules/* rm -rf $(CURDIR)/node_modules/*
rm -rf $(CURDIR)/dist

View File

@ -18,7 +18,7 @@ function copyToClipboard() {
); );
} }
function updatePassword(password) { function updatePassword(e: Event) {
globalPassword.set(password) globalPassword.set(password)
} }