fit-textareas feature is expanding the edit dialog up to hundreds of pages
See original GitHub issueIf I have an issue with thousands of lines, i.e., and hit the edit button, and the option fit-textareas
is enabled, the text box area is expanded and the save and cancel button are hard to reach.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
v-edit-dialog API - Vuetify
Vuetify is a Material Design component framework for Vue.js. It aims to provide all the tools necessary to create beautiful content rich applications....
Read more >sindresorhus/refined-github (Raised $2,687.94) - Issuehunt
Don't clutter the global search bar in the global Pull Requests page ... fit-textareas feature is expanding the edit dialog up to hundreds...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The changelog mentions it as “Comment boxes expand with their content and no longer show scroll bars”
I feel the pain. Here are 2 solutions that don’t involve setting a limit:
esc
should press Cancel or blur the field, this is actually already a feature of RGH and it isn’t working (at least in this case) https://github.com/sindresorhus/refined-github/blob/0b6c7330c21f8570519143ad3d0decc328d4db47/source/features/comment-fields-keyboard-shortcuts.tsx#L33-L45blur
, which coupled withesc
-to-blur could also fix it, but I think I want the field to always fit the content.So I think if the
esc
-to-cancel feature if fixed (or extended to edited comments), then this would at least fix the specific use case.