Skip to content

Commit

Permalink
feat(audio edit): make lyrics textarea resizeable (#1212)
Browse files Browse the repository at this point in the history
* Update al_music.js: make the lyrics textarea resizable

* Update al_music.js: change max height of lyrics textarea
  • Loading branch information
ayaaop authored Jan 24, 2025
1 parent 4c050b2 commit 9ea67ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Web/static/js/al_music.js
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ u(document).on("click", ".musicIcon.edit-icon", (e) => {
<div style="margin-top: 11px">
${tr("lyrics")}
<textarea name="lyrics" maxlength="5000" style="max-height: 200px;">${lyrics ?? ""}</textarea>
<textarea name="lyrics" maxlength="5000" style="resize: vertical; max-height: 285px;">${lyrics ?? ""}</textarea>
</div>
<div style="margin-top: 11px">
Expand Down

0 comments on commit 9ea67ac

Please sign in to comment.