From 4be01489068a255cf3df6c29bd5945ab29238579 Mon Sep 17 00:00:00 2001 From: Serafin-dev Date: Tue, 5 Nov 2024 12:32:15 -0300 Subject: [PATCH] fix: revert modal resize removal --- lms/static/js/edxnotes/plugins/llm_summarize.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lms/static/js/edxnotes/plugins/llm_summarize.js b/lms/static/js/edxnotes/plugins/llm_summarize.js index cac7ca13d5e2..162833b4a063 100644 --- a/lms/static/js/edxnotes/plugins/llm_summarize.js +++ b/lms/static/js/edxnotes/plugins/llm_summarize.js @@ -162,7 +162,6 @@ `); textArea.value = data.summary; textArea.style.height = `${textArea.scrollHeight}px`; - textAreaWrapper.querySelector(".annotator-resize").remove(); if (annotatorForm.offsetHeight > editorTop){ textArea.style.maxHeight = `${editorTop - controlsHeight - tagFieldHeight}px`;