add footnote for discoverability (#176336)

* add footnote for discoverability

* tweak wording
This commit is contained in:
SteVen Batten
2023-03-06 18:31:27 -08:00
committed by GitHub
parent d0ad7c09bb
commit bbc87d8ec2
@@ -309,6 +309,8 @@ class TimerCellStatusBarItem extends Disposable {
renderTimes += `- [${rendererInfo?.displayName ?? key}](command:workbench.action.openIssueReporter?${args}) ${formatCellDuration(renderDuration[key])}\n`;
}
renderTimes += `\n*${localize('notebook.cell.statusBar.timerTooltip.reportIssueFootnote', "Use the links above to file an issue using the issue reporter.")}*\n`;
tooltip = {
value: localize('notebook.cell.statusBar.timerTooltip', "**Last Execution** {0}\n\n**Execution Time** {1}\n\n**Overhead Time** {2}\n\n**Render Times**\n\n{3}", lastExecution, formatCellDuration(executionDuration), formatCellDuration(timerDuration - executionDuration), renderTimes),
isTrusted: true