From e7c4735a555edab17a870b31c65f3d300665db8a Mon Sep 17 00:00:00 2001 From: Exodus4D Date: Sat, 6 May 2017 13:42:12 +0200 Subject: [PATCH] - fixed missing system label on signature select, closed #488 --- js/app/map/map.js | 4 ++-- public/js/v1.2.3/app/map/map.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/app/map/map.js b/js/app/map/map.js index 32b1baaa..91bce281 100644 --- a/js/app/map/map.js +++ b/js/app/map/map.js @@ -1634,10 +1634,10 @@ define([ id: id ? id : 0, source: parseInt( source.data('id') ), sourceName: source.data('name'), - sourceAlias: source.getSystemInfo(['alias']), + sourceAlias: source.getSystemInfo(['alias']) || source.data('name'), target: parseInt( target.data('id') ), targetName: target.data('name'), - targetAlias: target.getSystemInfo(['alias']), + targetAlias: target.getSystemInfo(['alias']) || target.data('name'), scope: connection.scope, type: connectionTypes, updated: updated ? updated : 0 diff --git a/public/js/v1.2.3/app/map/map.js b/public/js/v1.2.3/app/map/map.js index 32b1baaa..91bce281 100644 --- a/public/js/v1.2.3/app/map/map.js +++ b/public/js/v1.2.3/app/map/map.js @@ -1634,10 +1634,10 @@ define([ id: id ? id : 0, source: parseInt( source.data('id') ), sourceName: source.data('name'), - sourceAlias: source.getSystemInfo(['alias']), + sourceAlias: source.getSystemInfo(['alias']) || source.data('name'), target: parseInt( target.data('id') ), targetName: target.data('name'), - targetAlias: target.getSystemInfo(['alias']), + targetAlias: target.getSystemInfo(['alias']) || target.data('name'), scope: connection.scope, type: connectionTypes, updated: updated ? updated : 0