Compare commits

...

3 Commits

Author SHA1 Message Date
mrliptontea
54d0136aa5 Fix #199 wrap key-values in issues list 2020-06-23 20:54:37 +01:00
mrliptontea
670830cf3e Use npm script for linters
lint-action doesn't work for forks
2020-06-15 21:00:20 +01:00
Grzegorz Rajchman
06ac7eff64 Merge pull request #197 from mrliptontea/issue-196
Fix text wrapping in issue list
2020-06-15 20:59:30 +01:00
4 changed files with 8 additions and 10 deletions

View File

@@ -23,14 +23,11 @@ jobs:
- name: Install npm dependencies
run: npm ci
- name: Run linters
uses: samuelmeuli/lint-action@v1
with:
github_token: ${{ secrets.github_token }}
eslint: true
eslint_dir: "src/javascripts"
stylelint: true
stylelint_dir: "src/sass"
- name: Eslint
run: npm run lint:js
- name: Stylelint
run: npm run lint:sass
- name: Check build
run: npm run build

View File

@@ -58,7 +58,7 @@ If you need to customize styles for [Redmine Backlogs][redmine_backlogs] remembe
Latest (master):
* Fixed #196: text wrapping in certain column types.
* Fixed #196 and #199: text wrapping in certain column types.
v2.11.0 (2020-05-08):

View File

@@ -194,6 +194,7 @@ tr.issue {
white-space: nowrap;
.category,
.enumeration,
.list,
.parent-subject,
.parent,

File diff suppressed because one or more lines are too long