Skip to content

Commit

Permalink
fix(android): tableview content update fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed Jan 8, 2025
1 parent 73f7e25 commit 72d0448
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,10 @@ private void appendRowInternal(Object rows, KrollDict animation, boolean interna
row.getProperties().optString(TiC.PROPERTY_FOOTER_TITLE,
row.getProperties().getString(TiC.PROPERTY_FOOTER)));

if (row.getParent() != null) {
row.setParent(section);
}
// Add row to section.
row.setParent(section);
section.add(row);
}

Expand Down

0 comments on commit 72d0448

Please sign in to comment.