You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently table components Table and RosterForLoop use a dirty BodyCell object.
The reason ComponentType is not used instead is probably due to the fact that a table cell could be a simple static label, and LabelType has nothing to share with ComponentType.
Yet, Lunatic now uses a Text component, and it is recommended to use this one instead of a LabelType object in tables.
Then, it is now appropriate to refactor and remove the BodyCell object, to replace it by ComponentType.
The text was updated successfully, but these errors were encountered:
Currently table components
Table
andRosterForLoop
use a dirtyBodyCell
object.The reason
ComponentType
is not used instead is probably due to the fact that a table cell could be a simple static label, andLabelType
has nothing to share withComponentType
.Yet, Lunatic now uses a
Text
component, and it is recommended to use this one instead of aLabelType
object in tables.Then, it is now appropriate to refactor and remove the
BodyCell
object, to replace it byComponentType
.The text was updated successfully, but these errors were encountered: