From 66c908f2b2f39bc20cd5f5cd6e1ae470c4fad4ed Mon Sep 17 00:00:00 2001 From: azivner Date: Sat, 1 Sep 2018 15:49:35 +0200 Subject: [PATCH] relations should be also prefixed by at-sign in bottom attribute panel --- src/public/javascripts/services/note_detail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/javascripts/services/note_detail.js b/src/public/javascripts/services/note_detail.js index 241f22160..7a9a6e0bc 100644 --- a/src/public/javascripts/services/note_detail.js +++ b/src/public/javascripts/services/note_detail.js @@ -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(" "); }