Skip to content

Commit

Permalink
fix typo is attribute.getLinkedColumns()
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuC authored and MathieuC committed Nov 23, 2020
1 parent a1c65d3 commit c341c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openHarmony/openHarmony_attribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ $.oAttribute.prototype.getLinkedColumns = function(){
if (_ownColumn != null) _columns.push(_ownColumn);

for (var i=0; i<_subAttributes.length; i++) {
_columns = _column.concat(_subAttributes[i].getLinkedColumns());
_columns = _columns.concat(_subAttributes[i].getLinkedColumns());
}

return _columns;
Expand Down

0 comments on commit c341c27

Please sign in to comment.