diff options
author | 2023-05-04 23:22:17 +0800 | |
---|---|---|
committer | 2023-05-04 23:22:17 +0800 | |
commit | b6dc0edc94cebdee74d67f5919f46c28cd96b9f8 (patch) | |
tree | ef97add33058dd7f65e662f402cf7ce24b7482e8 /source/features/comment-fields-keyboard-shortcuts.tsx | |
parent | 0f0d7435a649466084fab40bb7fe0481b0c73dba (diff) | |
download | refined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.tar.gz refined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.tar.zst refined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.zip |
Lint (ESM file imports + named functions) (#6613)
Diffstat (limited to 'source/features/comment-fields-keyboard-shortcuts.tsx')
-rw-r--r-- | source/features/comment-fields-keyboard-shortcuts.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/features/comment-fields-keyboard-shortcuts.tsx b/source/features/comment-fields-keyboard-shortcuts.tsx index b297a136..b765cb3c 100644 --- a/source/features/comment-fields-keyboard-shortcuts.tsx +++ b/source/features/comment-fields-keyboard-shortcuts.tsx @@ -4,8 +4,8 @@ import {DelegateEvent} from 'delegate-it'; import * as pageDetect from 'github-url-detection'; import filterAlteredClicks from 'filter-altered-clicks'; -import features from '../feature-manager'; -import {onCommentFieldKeydown} from '../github-events/on-field-keydown'; +import features from '../feature-manager.js'; +import {onCommentFieldKeydown} from '../github-events/on-field-keydown.js'; function handleEscapeKey(event: DelegateEvent<KeyboardEvent, HTMLTextAreaElement>, targetField: HTMLTextAreaElement): void { // Cancel buttons have different classes for inline comments and editable comments |