bbovenzi commented on code in PR #30950:
URL: https://github.com/apache/airflow/pull/30950#discussion_r1205930257
##########
airflow/www/static/js/dag/details/NotesAccordion.tsx:
##########
@@ -106,8 +160,16 @@ const NotesAccordion = ({
maxRows={10}
as={ResizeTextarea}
value={note}
- onChange={(e) => setNote(e.target.value)}
+ onChange={(e) => {
+ setNote(e.target.value);
+ }}
data-testid="notes-input"
+ onFocus={() => {
+ localStorage.setItem(isInputIFocus, "true");
Review Comment:
What if we just got rid of it as an accordion? The text has a limit so it
will never be too long.
I can help with that part if you'd like
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]