Skip to content

Commit 9cb0c6c

Browse files
author
Luke Smallwood
committed
fix braces
1 parent 456d95a commit 9cb0c6c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Imports/ArcGIS/Runtime/Toolkit/Dialogs.2.0/AuthenticationView.qml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,12 @@ Item {
7575
Component.onCompleted: {
7676
var parentsChildren = parent.children;
7777
var maxZ = 0;
78-
for (var i = 0; i < parentsChildren.length; i++){}
78+
for (var i = 0; i < parentsChildren.length; i++){
7979
if (parentsChildren[i] === item)
8080
continue;
8181
maxZ = Math.max(maxZ, parentsChildren[z]);
82-
z = maxZ + 1; // the view should be shown on top
82+
z = maxZ + 1; // the view should be shown on top
83+
}
8384
}
8485

8586
/*!

0 commit comments

Comments
 (0)