fix relations in attributes

This commit is contained in:
azivner
2018-08-06 11:30:37 +02:00
parent a55d3530e9
commit 49989695ff
3 changed files with 12 additions and 7 deletions

View File

@@ -263,7 +263,7 @@ async function loadAttributes() {
$attributeListInner.append(utils.formatLabel(attribute) + " ");
}
else if (attribute.type === 'relation') {
$attributeListInner.append(attribute.name + " = ");
$attributeListInner.append(attribute.name + "=");
$attributeListInner.append(await linkService.createNoteLink(attribute.value));
$attributeListInner.append(" ");
}