diff options
author | 2020-01-08 15:44:00 +0700 | |
---|---|---|
committer | 2020-01-08 15:44:00 +0700 | |
commit | 4c502f50b45d339f9eb6fb3964b4eabc7ba7a36f (patch) | |
tree | 8e00412e5418075291621a31347a226ea6fa238b /source/features/edit-files-faster.tsx | |
parent | 1d180ef1005d91199419fd9fdc771fee62a235b5 (diff) | |
download | refined-github-4c502f50b45d339f9eb6fb3964b4eabc7ba7a36f.tar.gz refined-github-4c502f50b45d339f9eb6fb3964b4eabc7ba7a36f.tar.zst refined-github-4c502f50b45d339f9eb6fb3964b4eabc7ba7a36f.zip |
Meta: Enable JSX linting (#2678)
Diffstat (limited to 'source/features/edit-files-faster.tsx')
-rw-r--r-- | source/features/edit-files-faster.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/edit-files-faster.tsx b/source/features/edit-files-faster.tsx index a9d2018a..1c2ce524 100644 --- a/source/features/edit-files-faster.tsx +++ b/source/features/edit-files-faster.tsx @@ -22,7 +22,7 @@ async function init(): Promise<void> { pathnameParts[4] = defaultBranch; // Replaces /${tag|commit}/ } - wrap(fileIcon, <a href={pathnameParts.join('/')} className="rgh-edit-files-faster" />); + wrap(fileIcon, <a href={pathnameParts.join('/')} className="rgh-edit-files-faster"/>); fileIcon.after(pencilIcon()); } } |