Skip to content

Commit 832fa9a

Browse files
committed
fixes #58
1 parent eb95d14 commit 832fa9a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/resource.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class Resource {
4545
Modified: this.getIconUri("modified", "light"),
4646
Added: this.getIconUri("added", "light"),
4747
Deleted: this.getIconUri("deleted", "light"),
48-
Conflicted: this.getIconUri("conflicted", "light"),
48+
conflict: this.getIconUri("conflict", "light"),
4949
Replaced: this.getIconUri("replaced", "light"),
5050
Unversioned: this.getIconUri("unversioned", "light"),
5151
Missing: this.getIconUri("missing", "light")
@@ -54,7 +54,7 @@ export class Resource {
5454
Modified: this.getIconUri("modified", "dark"),
5555
Added: this.getIconUri("added", "dark"),
5656
Deleted: this.getIconUri("deleted", "dark"),
57-
Conflicted: this.getIconUri("conflicted", "dark"),
57+
conflict: this.getIconUri("conflict", "dark"),
5858
Replaced: this.getIconUri("replaced", "dark"),
5959
Unversioned: this.getIconUri("unversioned", "dark"),
6060
Missing: this.getIconUri("missing", "dark")
@@ -64,8 +64,8 @@ export class Resource {
6464
switch (this.type) {
6565
case "added":
6666
return Icons[theme].Added;
67-
case "conflicted":
68-
return Icons[theme].Conflicted;
67+
case "conflict":
68+
return Icons[theme].conflict;
6969
case "deleted":
7070
return Icons[theme].Deleted;
7171
case "modified":

0 commit comments

Comments
 (0)