Przeglądaj źródła

fix int and float raw values in ssr

Evan Almloff 2 lat temu
rodzic
commit
96397f08d0
1 zmienionych plików z 2 dodań i 0 usunięć
  1. 2 0
      packages/ssr/src/renderer.rs

+ 2 - 0
packages/ssr/src/renderer.rs

@@ -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)?,
                         _ => {}
                     };
                 }