Explorar el Código

Merge pull request #108 from DioxusLabs/jk/fstring-component-fields

Fix: string formatting detection in component fields
Jonathan Kelley hace 3 años
padre
commit
f4132d1874
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/core-macro/src/rsx/component.rs

+ 1 - 1
packages/core-macro/src/rsx/component.rs

@@ -221,7 +221,7 @@ fn is_literal_foramtted(lit: &LitStr) -> bool {
     while let Some(next) = chars.next() {
     while let Some(next) = chars.next() {
         if next == '{' {
         if next == '{' {
             let nen = chars.next();
             let nen = chars.next();
-            if nen == Some('{') {
+            if nen != Some('{') {
                 return true;
                 return true;
             }
             }
         }
         }