Add non-actionable fix recommendation to move very close points apart

This commit is contained in:
Quincy Morgan
2019-05-03 12:15:26 -07:00
parent f786056503
commit dbc3978d71
3 changed files with 9 additions and 0 deletions

View File

@@ -1464,6 +1464,8 @@ en:
title: Ignore this issue
merge_points:
title: Merge these points
move_points_apart:
title: Move these points apart
move_tags:
title: Move the tags
annotation: Moved tags.

View File

@@ -1820,6 +1820,9 @@
"merge_points": {
"title": "Merge these points"
},
"move_points_apart": {
"title": "Move these points apart"
},
"move_tags": {
"title": "Move the tags",
"annotation": "Moved tags."

View File

@@ -86,6 +86,10 @@ export function validationCloseNodes() {
operation = operationMerge([entityIds[0], entityIds[1]], context);
operation();
}
}),
new validationIssueFix({
icon: 'iD-operation-disconnect',
title: t('issues.fix.move_points_apart.title')
})
]
});