From 53877ea05c60f30449c2c092d1786436857efe1e Mon Sep 17 00:00:00 2001
From: ayato <58212796+ayaaop@users.noreply.github.com>
Date: Thu, 23 Jan 2025 04:22:16 +0500
Subject: [PATCH 1/2] Update al_music.js: make the lyrics textarea resizable

---
 Web/static/js/al_music.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Web/static/js/al_music.js b/Web/static/js/al_music.js
index d9029763..0b39ecfe 100644
--- a/Web/static/js/al_music.js
+++ b/Web/static/js/al_music.js
@@ -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: 200px;">${lyrics ?? ""}</textarea>
         </div>
 
         <div style="margin-top: 11px">

From b0511aa78180e777250d410153bdbc2c3ac6aa00 Mon Sep 17 00:00:00 2001
From: ayato <58212796+ayaaop@users.noreply.github.com>
Date: Thu, 23 Jan 2025 19:22:00 +0500
Subject: [PATCH 2/2] Update al_music.js: change max height of lyrics textarea

---
 Web/static/js/al_music.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Web/static/js/al_music.js b/Web/static/js/al_music.js
index 0b39ecfe..9e166d58 100644
--- a/Web/static/js/al_music.js
+++ b/Web/static/js/al_music.js
@@ -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="resize: vertical; max-height: 200px;">${lyrics ?? ""}</textarea>
+            <textarea name="lyrics" maxlength="5000" style="resize: vertical; max-height: 285px;">${lyrics ?? ""}</textarea>
         </div>
 
         <div style="margin-top: 11px">