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 it seems that the before and after attribute of the custom styles is not working as expected.
When using after, nothing changes and the after text is not appearing:
constString test ='<p class="test">This is a test with before and after tag.</p>';
returnHtml(
data: test,
style: {
'.test':Style(
after:'TEXT',
),
},
);
When using before an exception appears
constString test ='<p class="test">This is a test with before and after tag</p>';
returnHtml(
data: test,
style: {
'.test':Style(
before:'test',
),
},
);
Great. Fixed above, there was an infinite loop running due to the before/after property being cascaded to the before/after child itself, which runs the before/after code again, etc...
Currently it seems that the before and after attribute of the custom styles is not working as expected.
When using after, nothing changes and the after text is not appearing:
When using before an exception appears
The full exception:
We're currently using this commit: 4b153dd
The text was updated successfully, but these errors were encountered: