Browse Source

chore: use trim

Jonathan Kelley 2 năm trước cách đây
mục cha
commit
40a36aa8e6
1 tập tin đã thay đổi với 1 bổ sung3 xóa
  1. 1 3
      packages/core/src/virtual_dom.rs

+ 1 - 3
packages/core/src/virtual_dom.rs

@@ -385,9 +385,7 @@ impl VirtualDom {
         };
 
         // Remove the "on" prefix if it exists, TODO, we should remove this and settle on one
-        if name.starts_with("on") {
-            name = &name[2..];
-        }
+        name = name.trim_start_matches("on");
 
         // Loop through each dynamic attribute in this template before moving up to the template's parent.
         while let Some(el_ref) = parent_path {