fix int and float raw values in ssr

This commit is contained in:
Evan Almloff 2023-03-22 08:43:58 -05:00
parent 46cc07e048
commit 96397f08d0

View file

@ -77,6 +77,8 @@ impl Renderer {
match attr.value {
AttributeValue::Text(value) => write!(buf, " {}=\"{}\"", attr.name, value)?,
AttributeValue::Bool(value) => write!(buf, " {}={}", attr.name, value)?,
AttributeValue::Int(value) => write!(buf, " {}={}", attr.name, value)?,
AttributeValue::Float(value) => write!(buf, " {}={}", attr.name, value)?,
_ => {}
};
}