mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-31 01:09:22 +02:00
Don't add undefined class to button
This commit is contained in:
@@ -152,7 +152,7 @@ export function uiTagReference(what) {
|
||||
|
||||
_button = _button.enter()
|
||||
.append('button')
|
||||
.attr('class', 'tag-reference-button ' + klass)
|
||||
.attr('class', 'tag-reference-button ' + (klass || ''))
|
||||
.attr('title', t('icons.information'))
|
||||
.attr('tabindex', -1)
|
||||
.call(svgIcon('#iD-icon-' + (iconName || 'inspect')))
|
||||
|
||||
Reference in New Issue
Block a user