mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Support Bytes in AttributeValue (#543)
This commit is contained in:
parent
2d08532bad
commit
8427a3f657
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ impl<'a> std::fmt::Display for AttributeValue<'a> {
|
|||
AttributeValue::Vec4Float(_, _, _, _) => todo!(),
|
||||
AttributeValue::Vec4Int(_, _, _, _) => todo!(),
|
||||
AttributeValue::Vec4Uint(_, _, _, _) => todo!(),
|
||||
AttributeValue::Bytes(_) => todo!(),
|
||||
AttributeValue::Bytes(a) => write!(f, "{:?}", a),
|
||||
AttributeValue::Any(_) => todo!(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue