This commit is contained in:
trading_peter 2022-03-12 23:38:39 +01:00
parent 6c0abed855
commit 274eb54990
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@tp/tp-store", "name": "@tp/tp-store",
"version": "1.1.0", "version": "1.1.1",
"description": "", "description": "",
"main": "tp-store.js", "main": "tp-store.js",
"scripts": { "scripts": {

View File

@ -61,7 +61,7 @@ export const Store = function(superClass) {
} }
_notifyInstance(instance, key, value, targetProperty) { _notifyInstance(instance, key, value, targetProperty) {
instance._storeUpdated(key, value, targetProperty); instance.storeUpdated(key, value, targetProperty);
} }
}; };
} }