missing space in inherited attribute list, fixes #1217

This commit is contained in:
zadam 2020-09-06 20:53:59 +02:00
parent fbdf089d5d
commit 7400c91a4f

View File

@ -222,7 +222,9 @@ export default class AttributeListWidget extends TabAwareWidget {
attributeRenderer.renderAttribute(attribute, $span, false);
$container.append($span);
$container
.append($span)
.append(" ");
}
}