Skip to content

Commit

Permalink
For of instead of in fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rguo123 committed Oct 24, 2024
1 parent b91c253 commit c33efd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Deeptable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export class Deeptable {

// First -- look at the schema metadata.
let dim = this._schema?.fields.find((d) => d.name === columnName);
for (const sub in subfield) {
for (const sub of subfield) {
if (dim === undefined) {
continue;
}
Expand Down

0 comments on commit c33efd4

Please sign in to comment.