-
Notifications
You must be signed in to change notification settings - Fork 378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Allow entering agenda text directly #6792
Conversation
For whatever reason (because I don't know javascript), the script that shows the appropriate file/text input box (taken from complete-review.js) doesn't hide the label of the hidden field. |
The issue is that the <div class="mb-3">
<label class="form-label" ...>Agenda text</label>
<textarea id="id_content" name="content" ...></textarea>
</div> and you are selecting for Easiest thing to do is to change line 54 of the template to Also, not sure if you're ready for review, but the JS code should go in its own module like is done for |
Thanks, that was the nudge I needed.
Yeah, I just wanted to get the JS working before going through the packaging step. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6792 +/- ##
==========================================
+ Coverage 88.78% 88.80% +0.01%
==========================================
Files 285 285
Lines 40324 40367 +43
==========================================
+ Hits 35800 35846 +46
+ Misses 4524 4521 -3 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion inline - I'm open to discussion if you think it's preferable to stick with the status code checks as they are
Fixes #6532