Skip to content

Commit a35a121

Browse files
authored
fix(MapSham): fix set method to use map property (#7000)
1 parent 11d37e2 commit a35a121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/utils/map.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class MapSham {
1515
return has;
1616
}
1717
set(key, value) {
18-
this.set_[key] = value;
18+
this.map_[key] = value;
1919
return this;
2020
}
2121
forEach(callback, thisArg) {

0 commit comments

Comments
 (0)