Skip to content

Commit

Permalink
fix(ios): dirty text need to propagand to super
Browse files Browse the repository at this point in the history
  • Loading branch information
ozonelmy authored and hippy-actions[bot] committed Aug 28, 2023
1 parent 22e1f8f commit 638ed17
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ - (BOOL)isPropagationDirty:(NativeRenderUpdateLifecycle)dirtyType {
}

- (void)dirtyText:(BOOL)needToDoLayout {
if ([self parentComponent]) {
[[self parentComponent] dirtyText:needToDoLayout];
}
}

- (BOOL)isTextDirty {
Expand Down

0 comments on commit 638ed17

Please sign in to comment.