Jonathan Kelley преди 2 години
родител
ревизия
40a36aa8e6
променени са 1 файла, в които са добавени 1 реда и са изтрити 3 реда
  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 {