File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import PullRequestContext from '../common/context';
13
13
import emitter from '../common/events' ;
14
14
import { useStateProp } from '../common/hooks' ;
15
15
import { ContextDropdown } from './contextDropdown' ;
16
- import { commentIcon , deleteIcon , editIcon } from './icon' ;
16
+ import { deleteIcon , editIcon , quoteIcon } from './icon' ;
17
17
import { nbsp , Spaced } from './space' ;
18
18
import { Timestamp } from './timestamp' ;
19
19
import { AuthorLink , Avatar } from './user' ;
@@ -93,7 +93,7 @@ export function CommentView(commentProps: Props) {
93
93
className = "icon-button"
94
94
onClick = { ( ) => emitter . emit ( 'quoteReply' , bodyMd ) }
95
95
>
96
- { commentIcon }
96
+ { quoteIcon }
97
97
</ button >
98
98
{ canEdit ? (
99
99
< button title = "Edit comment" className = "icon-button" onClick = { ( ) => setEditMode ( true ) } >
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export const skipIcon = <Icon src={require('../../resources/icons/skip.svg')} cl
18
18
export const chevronIcon = < Icon src = { require ( '../../resources/icons/chevron.svg' ) } /> ;
19
19
export const chevronDownIcon = < Icon src = { require ( '../../resources/icons/chevron_down.svg' ) } /> ;
20
20
export const commentIcon = < Icon src = { require ( '../../resources/icons/comment.svg' ) } /> ;
21
+ export const quoteIcon = < Icon src = { require ( '../../resources/icons/quote.svg' ) } /> ;
21
22
export const commitIcon = < Icon src = { require ( '../../resources/icons/commit_icon.svg' ) } /> ;
22
23
export const copyIcon = < Icon src = { require ( '../../resources/icons/copy.svg' ) } /> ;
23
24
export const deleteIcon = < Icon src = { require ( '../../resources/icons/delete.svg' ) } /> ;
You can’t perform that action at this time.
0 commit comments