mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Merge branch 'develop' into accessible_ui
This commit is contained in:
@@ -50,9 +50,9 @@ export function uiNoteHeader() {
|
||||
.append('div')
|
||||
.attr('class', 'note-header-label')
|
||||
.html(function(d) {
|
||||
if (_note.isNew()) { return t('note.new'); }
|
||||
return t('note.note') + ' ' + d.id + ' ' +
|
||||
(d.status === 'closed' ? t('note.closed') : '');
|
||||
if (_note.isNew()) { return t.html('note.new'); }
|
||||
return t.html('note.note') + ' ' + d.id + ' ' +
|
||||
(d.status === 'closed' ? t.html('note.closed') : '');
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user