Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
HyeokjinKang committed Nov 1, 2024
1 parent 564e4df commit 87fe4e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/js/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -2413,7 +2413,7 @@ const test = () => {
pattern.track = trackSettingsForm[0].value;
pattern.producer = trackSettingsForm[1].value;
pattern.author = trackSettingsForm[2].value;
pattern.comment = trackSettingsForm[3].comment;
pattern.comment = trackSettingsForm[3].value;
localStorage.pattern = JSON.stringify(pattern);
window.location.href = `${url}/test`;
}, 500);
Expand Down
2 changes: 1 addition & 1 deletion views/editor.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
<input type="text" class="settingsPropertiesTextbox metropolis left" onfocus="textFocused()" onblur="textBlurred()" value="" />
</div>
<div class="settingsPropertiesIndividual column">
<span class="settingsPropertiesTitle">Comment</span>
<span class="settingsPropertiesTitle">COMMENT</span>
<input type="text" class="settingsPropertiesTextbox metropolis left" onfocus="textFocused()" onblur="textBlurred()" value="" />
</div>
</div>
Expand Down

0 comments on commit 87fe4e0

Please sign in to comment.