We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ef84d8d + 72878fb commit 1f4e699Copy full SHA for 1f4e699
extensions/ql-vscode/CHANGELOG.md
@@ -1,5 +1,9 @@
1
# CodeQL for Visual Studio Code: Changelog
2
3
+## 1.3.3 - [UNRELEASED]
4
+
5
+- Fix display of raw results entities with label but no url.
6
7
## 1.3.2 - 12 August 2020
8
9
- Fix error with choosing qlpack search path.
extensions/ql-vscode/src/adapt.ts
@@ -73,7 +73,7 @@ export function adaptValue(val: ColumnValue): ResultValue {
73
}
74
75
if (url === undefined) {
76
- return 'none';
+ return val.label || '';
77
78
79
return {
0 commit comments