diff options
Diffstat (limited to 'source/features/link-to-file-in-file-history.tsx')
-rw-r--r-- | source/features/link-to-file-in-file-history.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/features/link-to-file-in-file-history.tsx b/source/features/link-to-file-in-file-history.tsx index 842d6bb3..0f763fb5 100644 --- a/source/features/link-to-file-in-file-history.tsx +++ b/source/features/link-to-file-in-file-history.tsx @@ -1,6 +1,6 @@ import React from 'dom-chef'; import select from 'select-dom'; -import fileIcon from 'octicon/file.svg'; +import FileIcon from 'octicon/file.svg'; import features from '../libs/features'; import * as pageDetect from '../libs/page-detect'; import {groupSiblings} from '../libs/group-buttons'; @@ -23,7 +23,7 @@ function init(): void | false { className="btn btn-outline tooltipped tooltipped-sw" aria-label="See object at this point in the history" > - {fileIcon()} + <FileIcon/> </a> ); |