We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 850be4e commit 69b49c1Copy full SHA for 69b49c1
src/Resources/queries/widget.js
@@ -334,7 +334,7 @@
334
const $li = $('<li />').addClass(csscls('table-list-item'));
335
const $muted = $('<span />').addClass(css('text-muted'));
336
337
- for (const i in values) {
+ for (const i in values.values()) {
338
if (showLineNumbers) {
339
$ul.append($li.clone().append([$muted.clone().text(`${i}:`), ' ', $('<span/>').text(values[i])]));
340
} else {
@@ -353,7 +353,7 @@
353
354
355
const values = [];
356
- for (const trace of traces) {
+ for (const trace of traces.values()) {
357
const $span = $('<span/>').text(trace.name || trace.file);
358
if (trace.namespace) {
359
$span.prepend(`${trace.namespace}::`);
0 commit comments