@lvce-editor/renderer-process 10.39.0 → 10.40.0
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.
|
@@ -11801,6 +11801,9 @@ const setPort = (state, portId, origin) => {
|
|
|
11801
11801
|
};
|
|
11802
11802
|
const setPosition = (state, id, x, y, width, height) => {
|
|
11803
11803
|
const $Iframe = get(id);
|
|
11804
|
+
if (!$Iframe) {
|
|
11805
|
+
return;
|
|
11806
|
+
}
|
|
11804
11807
|
setBounds$a($Iframe, x, y, width, height);
|
|
11805
11808
|
};
|
|
11806
11809
|
|