fixed bug where password change would display the object type instead
parent
c07a6ac04e
commit
21a171a451
3
Makefile
3
Makefile
|
@ -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
|
||||||
|
|
|
@ -18,7 +18,7 @@ function copyToClipboard() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function updatePassword(password) {
|
function updatePassword(e: Event) {
|
||||||
globalPassword.set(password)
|
globalPassword.set(password)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue