Skip to content

Commit

Permalink
update breadcrumb on case-only file rename
Browse files Browse the repository at this point in the history
  • Loading branch information
mutn3ja committed Apr 28, 2019
1 parent a47406b commit c35421b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class Item extends BreadcrumbsItem {
return false;
}
if (this.element instanceof FileElement && other.element instanceof FileElement) {
return isEqual(this.element.uri, other.element.uri);
return isEqual(this.element.uri, other.element.uri, false);
}
if (this.element instanceof TreeElement && other.element instanceof TreeElement) {
return this.element.id === other.element.id;
Expand Down

0 comments on commit c35421b

Please sign in to comment.