Skip to content

Commit

Permalink
Fix weird grouping bug (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejizba committed Jul 9, 2019
1 parent d633543 commit b80a19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tree/LocalGroupTreeItemBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export abstract class LocalGroupTreeItemBase<TItem extends ILocalItem, TProperty
}

public get id(): string {
return this.group;
return this.group + '|LocalGroup'; // Add suffix to ensure this id doesn't coincidentally overlap with a non-grouped item
}

public get maxCreatedTime(): number {
Expand Down

0 comments on commit b80a19e

Please sign in to comment.