relations should be also prefixed by at-sign in bottom attribute panel

This commit is contained in:
azivner 2018-09-01 15:49:35 +02:00
parent 7199208d9d
commit 66c908f2b2

View File

@ -448,7 +448,7 @@ async function showAttributes() {
$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(" ");
}