浏览代码

adds an informative message for an ocurring bug

Matheus Giovani 2 年之前
父节点
当前提交
c076c85b6c
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      packages/renderer/src/core/vdom/directives/EventHandler.ts

+ 1 - 0
packages/renderer/src/core/vdom/directives/EventHandler.ts

@@ -17,6 +17,7 @@ directive("on", async (node, { value, expression, scope }) => {
 
         debug("will handle event \"%s\" to %O", value, evaluate);
 
+        // @todo check why events are duplicating for the FIRST element inside the for-loop
         node.addEventListener(value, async ($event: any) => {
             debug("handled %s event", value);