Skip to content

Commit

Permalink
gs-reactor: Tag: Fix test in getInheritedProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
fducroquet committed Feb 8, 2017
1 parent 8cf9a1d commit 35f2f4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Property<T> getProperty(String propertyName, Context[] models) {

@Override
default <T> Property<T> getInheritedProperty(String propertyName, Context[] model, Tag[] tag) {
while (tag != null && model[0] != null) {
while (tag[0] != null && model[0] != null) {
if (tag[0].getMetaBinding() != null && model[0].getHtmlDomNode(tag[0].getParent()) == null)
model[0] = model[0].getParent();
tag[0] = tag[0].getParent();
Expand Down

0 comments on commit 35f2f4a

Please sign in to comment.