Skip to content

Commit

Permalink
jsdialog: fix error in frame label getter
Browse files Browse the repository at this point in the history
Signed-off-by: Szymon Kłos <[email protected]>
Change-Id: Idbdb8bc8b895e800450b0f8b7b4b564627c99890
  • Loading branch information
eszkadev authored and gokaysatir committed Oct 17, 2023
1 parent 9730d47 commit 0b2b048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/src/control/jsdialog/Widget.Frame.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function _extractLabelText(data) {
}

for (var i = 0; i < data.children.length; i++) {
var label = this._extractLabelText(data.children[i]);
var label = _extractLabelText(data.children[i]);
if (label)
return label;
}
Expand Down

0 comments on commit 0b2b048

Please sign in to comment.