From cbcdfc075c84932d75b2637f78727eaba4641984 Mon Sep 17 00:00:00 2001 From: Thomas Hervey Date: Fri, 3 Aug 2018 16:51:35 -0500 Subject: [PATCH] small UI change to header --- modules/ui/keepRight_header.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui/keepRight_header.js b/modules/ui/keepRight_header.js index e98282725..a40fdc96e 100644 --- a/modules/ui/keepRight_header.js +++ b/modules/ui/keepRight_header.js @@ -43,9 +43,9 @@ export function uiKeepRightHeader(context) { .append('div') .attr('class', 'kr_error-header-label') .text(function(d) { - return t('keepRight.entities.' + d.object_type); + return t('keepRight.entities.' + d.object_type + ' '); }) - .append('div') + .append('span') // .attr('href', getEntityLink()) // TODO: add / remove link if entity is/isn't in the graph .text(function(d) { return d.object_id; }); }