fix(view): fixed hydrator to pass the right element index when attaching an event listener
This commit is contained in:
@@ -77,7 +77,9 @@ class StringMapWrapper {
|
||||
}
|
||||
static Map merge(Map a, Map b) {
|
||||
var m = new Map.from(a);
|
||||
b.forEach((k, v) => m[k] = v);
|
||||
if (b != null) {
|
||||
b.forEach((k, v) => m[k] = v);
|
||||
}
|
||||
return m;
|
||||
}
|
||||
static bool isEmpty(Map m) => m.isEmpty;
|
||||
|
||||
Reference in New Issue
Block a user