Skip to content

Commit

Permalink
Use revised values for estimation tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
pgiraud committed Apr 20, 2021
1 parent 8001562 commit 2e58331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Diagram.vue
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ export default class Diagram extends Vue {
text += ' estimated';
text += (estimateFactor !== 1) ? ' by <b>' + factor(estimateFactor) + '</b>' : '';
text += '<br>';
text += 'Planned: ' + node[NodeProp.PLAN_ROWS];
text += 'Planned: ' + node[NodeProp.PLAN_ROWS_REVISED];
text += ' 🡒 Actual: ' + node[NodeProp.ACTUAL_ROWS_REVISED];
return text;
}
Expand Down

0 comments on commit 2e58331

Please sign in to comment.