Skip to content

Commit

Permalink
eventを受け取っていなかったので修正
Browse files Browse the repository at this point in the history
  • Loading branch information
dicenull committed Aug 22, 2023
1 parent 8d38379 commit a85a2db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion did-login/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ document.getElementById("submit").onclick = async () => {
};

// DIDとパスワードの保存処理
document.getElementById("saveBtn").onclick = async () => {
document.getElementById("saveBtn").onclick = async (event) => {
event.preventDefault();

const did = document.getElementById("did").value;
Expand Down

0 comments on commit a85a2db

Please sign in to comment.