Skip to content

Commit 1f4e699

Browse files
authored
Merge pull request #536 from jcreedcmu/jcreed/fix-none
Fix #535
2 parents ef84d8d + 72878fb commit 1f4e699

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CodeQL for Visual Studio Code: Changelog
22

3+
## 1.3.3 - [UNRELEASED]
4+
5+
- Fix display of raw results entities with label but no url.
6+
37
## 1.3.2 - 12 August 2020
48

59
- Fix error with choosing qlpack search path.

extensions/ql-vscode/src/adapt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function adaptValue(val: ColumnValue): ResultValue {
7373
}
7474

7575
if (url === undefined) {
76-
return 'none';
76+
return val.label || '';
7777
}
7878

7979
return {

0 commit comments

Comments
 (0)