fixed bug where password change would display the object type instead
parent
c07a6ac04e
commit
21a171a451
1
Makefile
1
Makefile
|
@ -25,3 +25,4 @@ clean:
|
||||||
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