@fto-consult/expo-ui 7.4.53 → 7.4.54
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.
- package/electron/preload.js +2 -2
- package/package.json +1 -1
package/electron/preload.js
CHANGED
@@ -390,12 +390,12 @@ const ELECTRON = {
|
|
390
390
|
showOnLoad : true,
|
391
391
|
devTools : true,
|
392
392
|
fileName
|
393
|
-
}
|
393
|
+
};
|
394
394
|
["width","height"].map((v)=>{
|
395
395
|
if(v in options){
|
396
396
|
opts[v] = options;
|
397
397
|
}
|
398
|
-
})
|
398
|
+
});
|
399
399
|
console.log("will print url ",opts);
|
400
400
|
return this.createPDFWindow(options)
|
401
401
|
}
|