Skip to content

Commit ec08597

Browse files
authored
Padawan Start/Stop Events/Icons (#7057)
Fixes #7004
1 parent 6b273fc commit ec08597

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

resources/icons/briefcase.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

resources/icons/three-bars.svg

Lines changed: 1 addition & 0 deletions
Loading

webviews/components/icon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ export const stopCircleIcon = <Icon src={require('../../resources/icons/stop-cir
4646
export const issueIcon = <Icon src={require('../../resources/icons/issue.svg')} />;
4747
export const issueClosedIcon = <Icon src={require('../../resources/icons/issue_closed.svg')} />;
4848
export const copilotIcon = <Icon src={require('../../resources/icons/copilot.svg')} />;
49-
export const briefcaseIcon = <Icon src={require('../../resources/icons/briefcase.svg')} />;
49+
export const threeBars = <Icon src={require('../../resources/icons/three-bars.svg')} />;
5050
export const tasklistIcon = <Icon src={require('../../resources/icons/tasklist.svg')} />;

webviews/components/timeline.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { ReviewType } from '../../src/github/views';
2727
import PullRequestContext from '../common/context';
2828
import { CommentView } from './comment';
2929
import Diff from './diff';
30-
import { briefcaseIcon, commitIcon, mergeIcon, plusIcon, tasklistIcon } from './icon';
30+
import { commitIcon, mergeIcon, plusIcon, tasklistIcon, threeBars } from './icon';
3131
import { nbsp } from './space';
3232
import { Timestamp } from './timestamp';
3333
import { AuthorLink, Avatar } from './user';
@@ -440,7 +440,7 @@ const CopilotStartedEventView = (event: CopilotStartedEvent) => {
440440
return (
441441
<div className="comment-container commit">
442442
<div className="commit-message">
443-
{briefcaseIcon}
443+
{threeBars}
444444
{nbsp}
445445
<div className="message">Copilot started work on behalf of <AuthorLink for={onBehalfOf} /></div>
446446
</div>

0 commit comments

Comments
 (0)