Closed medienbaecker closed 3 years ago
I can reproduce this! On Windows it looks even worse.
Seems to be related to the CodeMirror dependency. package.json
has "codemirror": "^5.52.2"
in devDependencies
, i.e. the latest 5.x version is installed when running npm install
.
Version 5.54.0 of CodeMirror was released on May 20 (see https://github.com/codemirror/CodeMirror/releases) and seems to be the version which adds the scrollbars. Proof:
npm i codemirror@5.53.2 --save-exact && npm run build
→ the field has no scrollbarsnpm i codemirror@5.54.0 --save-exact && npm run build
→ the field has scrollbarsLimiting the dependency version to exactly 5.53.2 wouldn't be a sustainable solution but I don't know what would be. Some CSS trickery perhaps? Maybe someone who knows CodeMirror and/or this plugin better would know.
I just cloned the repository and ran
npm install
andnpm run build
. Something seems to have changed because the textarea can now be scrolled. Downloading a pre-built release works.Can you reproduce this? Did you change something after building?