From 5765c05452a7c465651027366544fd76748780de Mon Sep 17 00:00:00 2001 From: Mike Ammerlaan Date: Sun, 1 Sep 2024 20:38:39 -0700 Subject: [PATCH] fix(editor): Small updates to UI --- app/src/UX/App.tsx | 2 +- app/src/UX/Home.css | 4 ++-- app/src/UX/ProjectEditor.tsx | 4 ++-- app/src/UX/ProjectEditorUtilities.ts | 3 ++- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/app/src/UX/App.tsx b/app/src/UX/App.tsx index b3bfd92e..afc4737f 100644 --- a/app/src/UX/App.tsx +++ b/app/src/UX/App.tsx @@ -1274,7 +1274,7 @@ export default class App extends Component { error += this.state.activeProject.mainDeployFolderPath; } - error += ". It may not be available on this PC?"; + error += ". It may not be available on this device?"; interior = ( , - content: "Export to folder on this PC", + content: "Export to a folder on this device", onClick: this._handleExportToLocalFolderClick, - title: "Exports this project to a folder on your PC.", + title: "Exports this project to a folder on your device.", }; exportMenu.push(exportKeys[nextExportKey]); } diff --git a/app/src/UX/ProjectEditorUtilities.ts b/app/src/UX/ProjectEditorUtilities.ts index 6ab83788..4661ae37 100644 --- a/app/src/UX/ProjectEditorUtilities.ts +++ b/app/src/UX/ProjectEditorUtilities.ts @@ -533,7 +533,8 @@ export default class ProjectEditorUtilities { undefined, async (message: string) => { await carto.notifyStatusUpdate(message); - } + }, + true ); await storage.rootFolder.saveAll();