View | Details | Raw Unified | Return to bug 42673
Collapse All | Expand All

(-)a/management/univention-management-console-frontend/umc/widgets/MixedInput.js (+1 lines)
 Lines 132-137   define([ Link Here 
132
132
133
			// only load dynamic values in case all dependencies are fullfilled
133
			// only load dynamic values in case all dependencies are fullfilled
134
			if (dependList.length != nDepValues) {
134
			if (dependList.length != nDepValues) {
135
				this._readyDeferred.resolve();
135
				return;
136
				return;
136
			}
137
			}
137
138
(-)a/management/univention-management-console-frontend/umc/widgets/_SelectMixin.js (+2 lines)
 Lines 408-413   define([ Link Here 
408
			// only load dynamic values in case all dependencies are fullfilled
408
			// only load dynamic values in case all dependencies are fullfilled
409
			if (dependList.length != nDepValues) {
409
			if (dependList.length != nDepValues) {
410
				//console.log('### _SelectMixin ['+this.name+']: return');
410
				//console.log('### _SelectMixin ['+this.name+']: return');
411
				this._readyDeferred.resolve();
411
				return;
412
				return;
412
			}
413
			}
413
414
 Lines 425-430   define([ Link Here 
425
			if (this._deferredOrValues) {
426
			if (this._deferredOrValues) {
426
				// another request is pending
427
				// another request is pending
427
				//console.log('### _SelectMixin ['+this.name+']: return (2)');
428
				//console.log('### _SelectMixin ['+this.name+']: return (2)');
429
				this._readyDeferred.resolve();
428
				return;
430
				return;
429
			}
431
			}
430
432

Return to bug 42673