diff options
author | 2020-04-03 19:09:49 +0200 | |
---|---|---|
committer | 2020-04-03 19:09:49 +0200 | |
commit | 45ab67ec7f1675cc29182a993688e7a45fa429bc (patch) | |
tree | 5c364a98f368debf3b8adfdf20283803392bd84d /source/features/patch-diff-links.tsx | |
parent | 38b6947ff6b6b5b882f4f6181a9a624a894ae147 (diff) | |
download | refined-github-45ab67ec7f1675cc29182a993688e7a45fa429bc.tar.gz refined-github-45ab67ec7f1675cc29182a993688e7a45fa429bc.tar.zst refined-github-45ab67ec7f1675cc29182a993688e7a45fa429bc.zip |
Allow multiple loaders in a single `features.add` (#2925)
Diffstat (limited to 'source/features/patch-diff-links.tsx')
-rw-r--r-- | source/features/patch-diff-links.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/features/patch-diff-links.tsx b/source/features/patch-diff-links.tsx index 027eb5e4..c85e91e3 100644 --- a/source/features/patch-diff-links.tsx +++ b/source/features/patch-diff-links.tsx @@ -23,7 +23,8 @@ function init(): void { features.add({ id: __featureName__, description: 'Adds links to `.patch` and `.diff` files in commits.', - screenshot: 'https://cloud.githubusercontent.com/assets/737065/13605562/22faa79e-e516-11e5-80db-2da6aa7965ac.png', + screenshot: 'https://cloud.githubusercontent.com/assets/737065/13605562/22faa79e-e516-11e5-80db-2da6aa7965ac.png' +}, { include: [ features.isCommit ], |