Skip to content

Commit

Permalink
Change rendezvous count for file history (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilapNaik committed May 11, 2023
1 parent 82b7c01 commit fd32572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/viewProviders/RendezvousViewProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class RendezvousViewProvider implements vscode.TreeDataProvider<vscode.Tr
return arraySort(Object.keys(this.rendezvousHistory.occurrences).map((key) => {
let fileTreeItem = new RendezvousFileTreeItem(key, vscode.TreeItemCollapsibleState.Collapsed, null, this.rendezvousHistory.occurrences[key]);
fileTreeItem.tooltip = fileTreeItem.key;
fileTreeItem.description = `hitCount: ${fileTreeItem.details.hitCount - fileTreeItem.details.zeroCostHitCount} | totalTime: ${fileTreeItem.details.totalTime.toFixed(3)} s`;
fileTreeItem.description = `hitCount: ${fileTreeItem.details.hitCount} | totalTime: ${fileTreeItem.details.totalTime.toFixed(3)} s`;
return fileTreeItem;
}), this.activeFilter);
} else {
Expand Down

0 comments on commit fd32572

Please sign in to comment.