mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix construct registry map reference
https://fedorahosted.org/freeipa/ticket/3235
This commit is contained in:
parent
1d802d12a4
commit
f14393f427
@ -35,7 +35,7 @@ define(['dojo/_base/declare',
|
||||
* Internal map for construction specifications.
|
||||
* @protected
|
||||
*/
|
||||
_map: {},
|
||||
_map: null,
|
||||
|
||||
/**
|
||||
* Registers construction specification
|
||||
@ -191,6 +191,10 @@ define(['dojo/_base/declare',
|
||||
if (!lang.isArrayLike(spec.post_ops)) {
|
||||
throw 'Argument exception: Invalid post_ops type.';
|
||||
}
|
||||
},
|
||||
|
||||
constructor: function(spec) {
|
||||
this._map = {};
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user