Skip to content

Commit

Permalink
refactor: replace highway with crosswalk
Browse files Browse the repository at this point in the history
  • Loading branch information
RitaDee committed Oct 21, 2023
1 parent 8b60486 commit 8f2a536
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/operations/cycle_crosswalk_tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ export function operationCycleCrosswalkTag(context, selectedIDs) {
operation.tooltip = function() {
const disabledReason = operation.disabled();
return disabledReason ?
context.t(`operations.cycle_highway_tag.${disabledReason}`) :
context.t('operations.cycle_highway_tag.description');
context.t(`operations.cycle_crosswalk_tag.${disabledReason}`) :
context.t('operations.cycle_crosswalk_tag.description');
};

operation.annotation = function() {
return context.t('operations.cycle_highway_tag.annotation');
return context.t('operations.cycle_crosswalk_tag.annotation');
};


Expand Down

0 comments on commit 8f2a536

Please sign in to comment.