Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 5451d63

Browse files
pavelgjmhevery
authored andcommitted
fix(compiler): don't wait indefinitly for non-null value on =>!
1 parent c38989a commit 5451d63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core_dom/compiler.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ class Compiler {
214214
(value, _) {
215215
if (dstPathFn.assign(controller, value) != null) {
216216
watch.remove();
217-
notify();
218217
}
219218
},
220219
filters: filters);
220+
notify();
221221
};
222222
break;
223223
case '&':

0 commit comments

Comments
 (0)