Skip to content

Commit b9cc8d3

Browse files
committed
Fix #598
1 parent ed79b9d commit b9cc8d3

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Version 2.0
44

5+
- `Data Export` Fix Column order not respected when performing subqueries [#598](https://github.com/tprouvot/Salesforce-Inspector-reloaded/issues/598)
56
- `Accessibility` Improve screen reader support: fix AlertBanner silent announcements, convert inspector button and tooltip trigger to semantic elements, add popup iframe title issues [#1107](https://github.com/tprouvot/Salesforce-Inspector-reloaded/issues/1107) & [#1108](https://github.com/tprouvot/Salesforce-Inspector-reloaded/issues/1108) (contribution by [akj](https://github.com/akj))
67
- `Dependencies Explorer` (contribution by [Georgi Dobrishinov](https://github.com/dobrishinov))
78
- `Flow Scanner` Extract Flow Scanner rules logic into shared module (fixes the Flow Scanner import flash on the Options page) contribution by [Camille Guillory](https://github.com/CamilleGuillory))

addon/data-export.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1270,8 +1270,8 @@ function RecordTable(vm) {
12701270
let columnIdx = new Map();
12711271
let header = ["_"];
12721272
function discoverColumns(record, prefix, row) {
1273-
for (let field in record) {
1274-
if (field == "attributes") {
1273+
for (const field of Object.keys(record)) {
1274+
if (field === "attributes") {
12751275
continue;
12761276
}
12771277
let column = prefix + field;

0 commit comments

Comments
 (0)