Add warning for multipolygon members with no set role (close #5851)

This commit is contained in:
Quincy Morgan
2019-02-25 17:46:50 -05:00
parent 909b87a8cd
commit 6aa1f86dfb
5 changed files with 114 additions and 0 deletions
+2
View File
@@ -308,6 +308,8 @@ export function uiIssues(context) {
d += '.highway';
} else if (d === 'almost_junction') {
d += '.highway-highway';
} else if (d === 'missing_role') {
d += '.multipolygon';
}
return t('issues.' + d + '.tip');
})