Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scrub for RapiD -> Rapid brand update #2543

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ REACT_APP_GEOGRAPHIC_INDEXING_DELAY=2
# iD editor base URL
REACT_APP_ID_EDITOR_SERVER_URL='https://www.openstreetmap.org/edit'

# RapiD editor base URL
# Rapid editor base URL
REACT_APP_RAPID_EDITOR_SERVER_URL='https://rapideditor.org/edit'

# Level0 editor base URL
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1611,7 +1611,7 @@ Release with [maproulette-backend_v4.3.1](https://github.com/maproulette/maproul
### Added
- Completion and review of multiple tasks together
- Templates for generating forms to be filled by mapper during task completion
- RapiD editor option by @gaoxm
- Rapid editor option by @gaoxm
- Updated help links by @mvexel
- Additional resiliency to missing task geometries
- Option to include specific task properties as columns in CSV exports
Expand Down
2 changes: 1 addition & 1 deletion src/services/Editor/Editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export const constructIdURI = function (task, mapBounds, options, taskBundle, re
};

/**
* Builds a RapiD editor URI for editing of the given task
* Builds a Rapid editor URI for editing of the given task
*/
export const constructRapidURI = function (task, mapBounds, options, replacedComment) {
const baseUriComponent = `${window.env.REACT_APP_RAPID_EDITOR_SERVER_URL}#`;
Expand Down
2 changes: 1 addition & 1 deletion src/services/Editor/Editor.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ describe("constructIdURI", () => {
});

describe("constructRapidURI", () => {
test("the uri specifies the RapiD editor", () => {
test("the uri specifies the Rapid editor", () => {
const uri = constructRapidURI(task, mapBounds);
expect(uri).toEqual(expect.stringContaining("rapid"));
});
Expand Down
2 changes: 1 addition & 1 deletion src/services/Editor/Messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ export default defineMessages({
},
rapid: {
id: "Editor.rapid.label",
defaultMessage: "Edit in RapiD",
defaultMessage: "Edit in Rapid",
},
});
2 changes: 1 addition & 1 deletion src/services/KeyboardShortcuts/Messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default defineMessages({

editRapid: {
id: "KeyMapping.openEditor.editRapid",
defaultMessage: "Edit in RapiD",
defaultMessage: "Edit in Rapid",
},

layerOSMData: {
Expand Down