File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
pkg/analysis_server/lib/src/status Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1576,9 +1576,9 @@ class GetFixesPage extends DiagnosticPageWithNav with PerformanceChartMixin {
15761576 var shortName = pathContext.basename (request.path);
15771577 buf.writeln (
15781578 '<tr>'
1579- '<td class="pre right">'
1579+ '<td class="pre right"><a href="/timing?id=${ request . id }&kind=getFixes"> '
15801580 '${_formatTiming (request )}'
1581- '</td>'
1581+ '</a></ td>'
15821582 '<td>${escape (shortName )}</td>'
15831583 '<td><code>${escape (request .snippet )}</code></td>'
15841584 '</tr>' ,
@@ -1989,6 +1989,8 @@ class TimingPage extends DiagnosticPageWithNav with PerformanceChartMixin {
19891989 List <RequestPerformance >? itemsSlow;
19901990 if (kind == 'completion' ) {
19911991 items = server.recentPerformance.completion.items.toList ();
1992+ } else if (kind == 'getFixes' ) {
1993+ items = server.recentPerformance.getFixes.items.toList ();
19921994 } else {
19931995 items = server.recentPerformance.requests.items.toList ();
19941996 itemsSlow = server.recentPerformance.slowRequests.items.toList ();
You can’t perform that action at this time.
0 commit comments