Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Jun 10, 2024
1 parent d052ee7 commit 21635f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/appgui.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,9 @@ dwvsimple.Gui = function (app, tools, uid) {
};
app.setDataViewConfigs(config);
// render data
const dataIds = app.getDataIds();
for (const dataId of dataIds) {
app.render(dataId);
var dataIds = app.getDataIds();
for (var i = 0; i < dataIds.length; ++i) {
app.render(dataIds[i]);
}
};

Expand Down

0 comments on commit 21635f1

Please sign in to comment.