mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Displaying all event data (#1635)
* Displaying all event data * Fixing viewing blank text panels and highlighting * add aria-label for insights dialog (#1629) * Displaying all event data * Fixing viewing blank text panels and highlighting * descriptive comments, removing redundant code
This commit is contained in:
committed by
GitHub
parent
af2bc859d1
commit
8d89364d72
@@ -228,7 +228,9 @@ export class ProfilerEditor extends BaseEditor {
|
||||
if (data) {
|
||||
this._modelService.updateModel(this._editorModel, data['TextData']);
|
||||
this._detailTableData.clear();
|
||||
this._detailTableData.push(Object.keys(data).map(key => {
|
||||
this._detailTableData.push(Object.keys(data).filter(key => {
|
||||
return data[key] !== ' ';
|
||||
}).map(key => {
|
||||
return {
|
||||
label: key,
|
||||
value: data[key]
|
||||
|
||||
Reference in New Issue
Block a user