Skip to content

Commit 94a574a

Browse files
authored
dont escape hints (#1652)
1 parent 3f24f9b commit 94a574a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Resources/queries/widget.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,11 @@
344344
if (showLineNumbers) {
345345
$ul.append($li.clone().append([$muted.clone().text(`${i}:`), '&nbsp;', $('<span/>').text(values[i])]));
346346
} else {
347-
$ul.append($li.clone().text(values[i]));
347+
if (caption === 'Hints') {
348+
$ul.append($li.clone().append(values[i]));
349+
} else {
350+
$ul.append($li.clone().text(values[i]));
351+
}
348352
}
349353
}
350354

0 commit comments

Comments
 (0)