@fto-consult/expo-ui 7.5.16 → 7.5.17
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 +1 -1
- package/package.json +1 -1
package/electron/preload.js
CHANGED
@@ -15,7 +15,7 @@ const uniqid = require("./utils/uniqid");
|
|
15
15
|
if(!appName || typeof appName !=='string'){
|
16
16
|
console.error("Nom de l'application invalide!! Veuillez spécifier un nom valide d'application ",electronProjectRoot," is electron project root")
|
17
17
|
}
|
18
|
-
const APP_NAME = appName
|
18
|
+
const APP_NAME = appName?.toUpperCase() || "";
|
19
19
|
let backupPathField = "_e_backupDataPath";
|
20
20
|
let cBackupPathField = "company"+backupPathField;
|
21
21
|
let dbPathField = "_electron_DBPathField";
|