WebReflection / uhtml

A micro HTML/SVG render

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Uncaught bad template

Dan-Do opened this issue · comments

commented

I am not sure where is the error. Please look at this https://codepen.io/ali33yukisakura/pen/JjOodXK?editors=1011

partial attributes are not supported in uhtml (neither in native DOM) ... so you need to write this:

<div class="${'modal-card modal-' + this.props.size}">

not this

<div class="modal-card modal-${this.props.size}">