Skip to content

Commit

Permalink
fix(editor): Small updates to UI
Browse files Browse the repository at this point in the history
  • Loading branch information
mammerla committed Sep 2, 2024
1 parent 2a6c07e commit 5765c05
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/src/UX/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,7 @@ export default class App extends Component<AppProps, AppState> {
error += this.state.activeProject.mainDeployFolderPath;
}

error += ". It may not be available on this PC?";
error += ". It may not be available on this device?";

interior = (
<Home
Expand Down
4 changes: 2 additions & 2 deletions app/src/UX/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}

.home-toolTile {
height: 120px;
height: 126px;
display: inline-flex;
margin-top: 10px;
margin-left: 10px;
Expand Down Expand Up @@ -179,7 +179,7 @@
.home-inspectFileUpload {
max-width: calc(100vw - 100px);
margin-left: 0px !important;
width: 210px;
width: 250px;
}

.home-projects-note {
Expand Down
4 changes: 2 additions & 2 deletions app/src/UX/ProjectEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2977,9 +2977,9 @@ export default class ProjectEditor extends Component<IProjectEditorProps, IProje
exportKeys[nextExportKey] = {
key: nextExportKey,
icon: <FontAwesomeIcon icon={faComputer} key={nextExportKey} className="fa-lg" />,
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]);
}
Expand Down
3 changes: 2 additions & 1 deletion app/src/UX/ProjectEditorUtilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,8 @@ export default class ProjectEditorUtilities {
undefined,
async (message: string) => {
await carto.notifyStatusUpdate(message);
}
},
true
);

await storage.rootFolder.saveAll();
Expand Down

0 comments on commit 5765c05

Please sign in to comment.