Caleb Porzio 1 năm trước cách đây
mục cha
commit
3a19b0f6d6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/alpinejs/src/directives/x-effect.js

+ 1 - 1
packages/alpinejs/src/directives/x-effect.js

@@ -3,5 +3,5 @@ import { directive } from '../directives'
 import { evaluate, evaluateLater } from '../evaluator'
 
 directive('effect', skipDuringClone((el, { expression }, { effect }) => {
-    effect(evaluateLater(el,  expression))
+    effect(evaluateLater(el, expression))
 }))