Description
- Gitea version (or commit ref): 1.14.0+dev-784-g85e6e0734
Description
Currently, Gitea supports "posting" text entered into a textarea using "Ctrl+Enter" for some text areas.
However, it appears pretty random which text areas do support it and which don't.
For example, adding a comment to a PR review cannot be posted using Ctrl+Enter.
Creating an issue can in contrast be posted using Ctrl+Enter, both for the title as well as for the description.
It would be nice if users didn't have to guess whether they can press Ctrl+Enter or not.
One textarea must make a decision before posting:
The textarea where you add the first comment on a PR and can choose either Start review
or add single comment
should automatically count as start review as a singly posted comment is most often unnecessary.
All textareas for further comments should simply add the comments to the queue submitted when submitting the PR review.
One textarea will need special treatment (could, if requested, also be a separate issue):
The "Submit review - comment" textarea where you can approve, comment or request changes for a PR currently throws an error when posting using Ctrl+Enter because no type has been given.
I'd argue that if no comments were made, the PR should automatically be counted as approved,
else it should be counted as (opinions will differ here) comment
or as changes requested
(I personally am for changes requested
because I'd say we can assume that if someone made a comment on a PR, it should be counted as a requested change)