|
|
|
@ -65,7 +65,7 @@ export class TextDocumentContentProvider implements vscode.TextDocumentContentPr
|
|
|
|
|
text += this._data['columnDefinitions'].map((x) => `<th>${x['name']}</th>`).join('')
|
|
|
|
|
text += '</tr>'
|
|
|
|
|
text += this._data['rows'].map((r) =>
|
|
|
|
|
'<tr>' + r['columns'].map((c) => '<td class="' + (c['value'] ? 'value-value' : 'value-null') + '">' + (c['value'] ? c['value'] : 'NULL') + '</td>').join('') + '</tr>'
|
|
|
|
|
'<tr>' + r['columns'].map((c) => '<td class="' + (c['value'] == null ? 'value-null' : 'value-value') + '">' + (c['value'] == null ? 'NULL' : c['value']) + '</td>').join('') + '</tr>'
|
|
|
|
|
).join('')
|
|
|
|
|
text += '</table></body>'
|
|
|
|
|
return text;
|
|
|
|
|