Open alykhanjetha opened 2 months ago
The following code works:
<VStack :for={message <- @messages}> <Text><%= message.name %></Text> <Spacer/> <Text><%= message.content %></Text> </VStack>
The following will crash the app:
<VStack :for={message <- @messages}> <Text alignment: .leadin><%= message.name %></Text> <Spacer/> <Text><%= message.content %></Text> </VStack>
Note the alignment: .leadin mistake I made.
alignment: .leadin
The markup is definitely wrong, but the app shouldn't crash.
This should be captured in the template compiler and not be permitted to render from the server. I'm going to move this to live_view_native as the bug is there
live_view_native
The following code works:
The following will crash the app:
Note the
alignment: .leadin
mistake I made.The markup is definitely wrong, but the app shouldn't crash.