From a35a1217f0027cbcd5e16d9332ecd372b5ec126c Mon Sep 17 00:00:00 2001 From: Armin Date: Fri, 18 Dec 2020 01:49:17 +0330 Subject: [PATCH] fix(MapSham): fix set method to use map property (#7000) --- src/js/utils/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/utils/map.js b/src/js/utils/map.js index a94d87934d..f12cdf7cdd 100644 --- a/src/js/utils/map.js +++ b/src/js/utils/map.js @@ -15,7 +15,7 @@ class MapSham { return has; } set(key, value) { - this.set_[key] = value; + this.map_[key] = value; return this; } forEach(callback, thisArg) {