Fix hot reload custom element (#2866)

* Fix hot reloading attributes on web components
This commit is contained in:
Evan Almloff 2024-08-20 23:56:47 +02:00 committed by GitHub
parent 3c699aad26
commit 6a46a66c9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -174,7 +174,9 @@ impl Attribute {
let element_name = self.el_name.as_ref().unwrap();
let rust_name = match element_name {
ElementName::Ident(i) => i.to_string(),
ElementName::Custom(s) => return (intern(s.value()), None),
// If this is a web component, just use the name of the elements instead of mapping the attribute
// through the hot reloading context
ElementName::Custom(_) => return (intern(attribute_name_rust.as_str()), None),
};
Ctx::map_attribute(&rust_name, &attribute_name_rust)