From 176e6934d8141b434bf219cbf3a5c1b60389147c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 9 Apr 2019 02:34:35 +0100 Subject: [PATCH] Inline URLs --- src/views/Environment.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Environment.vue b/src/views/Environment.vue index f86d676..b42e9ba 100644 --- a/src/views/Environment.vue +++ b/src/views/Environment.vue @@ -158,7 +158,7 @@ export default { }, gitUrl: function () { - return this.application.machineName + '@svn-1234.prod.hosting.acquia.com:' + this.application.machineName + '.git' + return `${this.application.machineName}@svn-1234.prod.hosting.acquia.com:${this.application.machineName}.git` }, isProduction: function () { @@ -166,7 +166,7 @@ export default { }, sshUrl: function () { - return this.application.machineName + '.' + this.environmentName + '@staging-1234.prod.hosting.acquia.com' + return `${this.application.machineName}.${this.environmentName}@staging-1234.prod.hosting.acquia.com` }, phpVersion: function () {