cloud-ide-element 1.1.175 → 1.1.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4154,7 +4154,9 @@ class CideEleFloatingContainerService {
|
|
|
4154
4154
|
// Set inputs if provided
|
|
4155
4155
|
if (config?.inputs) {
|
|
4156
4156
|
Object.keys(config.inputs).forEach(key => {
|
|
4157
|
-
componentRef.
|
|
4157
|
+
if (componentRef.instance && typeof componentRef.instance === 'object' && key in componentRef.instance) {
|
|
4158
|
+
componentRef.instance[key] = config.inputs[key];
|
|
4159
|
+
}
|
|
4158
4160
|
});
|
|
4159
4161
|
}
|
|
4160
4162
|
// Set outputs if provided
|