File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ import { getUri } from "../utils/getUri";
2626import { compareVersions , kdbOutputLog } from "../utils/core" ;
2727import { StructuredTextResults } from "../models/queryResult" ;
2828import { GridOptions } from "ag-grid-community" ;
29+ import { decodeQUTF } from "../utils/decode" ;
2930
3031export class KdbResultsViewProvider implements WebviewViewProvider {
3132 public static readonly viewType = "kdb-results" ;
@@ -198,7 +199,7 @@ export class KdbResultsViewProvider implements WebviewViewProvider {
198199 columns . forEach ( ( column ) => {
199200 const { name, values, order } = column ;
200201 order . forEach ( ( pos , index ) => {
201- rowData [ index ] [ name ] = values [ pos ] ;
202+ rowData [ index ] [ name ] = decodeQUTF ( values [ pos ] ) ;
202203 } ) ;
203204 } ) ;
204205
You can’t perform that action at this time.
0 commit comments