diff --git a/management/univention-management-console-frontend/umc/widgets/MixedInput.js b/management/univention-management-console-frontend/umc/widgets/MixedInput.js index 3899ca9..39324f7 100644 --- a/management/univention-management-console-frontend/umc/widgets/MixedInput.js +++ b/management/univention-management-console-frontend/umc/widgets/MixedInput.js @@ -132,6 +132,7 @@ define([ // only load dynamic values in case all dependencies are fullfilled if (dependList.length != nDepValues) { + this._readyDeferred.resolve(); return; } diff --git a/management/univention-management-console-frontend/umc/widgets/_SelectMixin.js b/management/univention-management-console-frontend/umc/widgets/_SelectMixin.js index 3f23778..a5bf90a 100644 --- a/management/univention-management-console-frontend/umc/widgets/_SelectMixin.js +++ b/management/univention-management-console-frontend/umc/widgets/_SelectMixin.js @@ -408,6 +408,7 @@ define([ // only load dynamic values in case all dependencies are fullfilled if (dependList.length != nDepValues) { //console.log('### _SelectMixin ['+this.name+']: return'); + this._readyDeferred.resolve(); return; } @@ -425,6 +426,7 @@ define([ if (this._deferredOrValues) { // another request is pending //console.log('### _SelectMixin ['+this.name+']: return (2)'); + this._readyDeferred.resolve(); return; }