Skip to content

Commit

Permalink
Scrub for RapiD -> Rapid brand update (#2543)
Browse files Browse the repository at this point in the history
  • Loading branch information
watmildon authored Feb 12, 2025
1 parent 64cc568 commit 2abbec7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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

0 comments on commit 2abbec7

Please sign in to comment.