Open
Description
Specific code that throws the error:
const updateTinyVal = (id, val) => { if (getTiny() && getTiny().get(id).getContent() !== val) { getTiny().get(id).setContent(val); } };
Happens when i try to build it dynamically e.g.
This works:
foreach (var item in listOfItems)
{
<Editor @bind-Text="item.Text"/>
}
This doesnt:
<Button OnClick="AddItemToListOfItems"/>
foreach (var item in listOfItems)
{
<Editor @bind-Text="item.Text"/>
}
Not sure why.
Metadata
Assignees
Labels
No labels
Activity