From be251ac37eb8a3e9bcaa757733724f4b3f863ee5 Mon Sep 17 00:00:00 2001 From: Agate <me@agate.blue> Date: Wed, 6 May 2020 00:26:23 +0200 Subject: [PATCH] Fixed espacing issue in instance name in footer --- front/src/components/Footer.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/components/Footer.vue b/front/src/components/Footer.vue index 3b2442831c..6e9f76167c 100644 --- a/front/src/components/Footer.vue +++ b/front/src/components/Footer.vue @@ -4,10 +4,10 @@ <div class="ui stackable equal height stackable grid"> <section class="four wide column"> <h4 v-if="podName" class="ui header ellipsis"> - <translate translate-context="Footer/About/Title" :translate-params="{instanceName: podName}" >About %{instanceName}</translate> + <span v-translate="{instanceName: podName}" translate-context="Footer/About/Title">About %{instanceName}</span> </h4> <h4 v-else class="ui header ellipsis"> - <translate translate-context="Footer/About/Title" :translate-params="{instanceUrl: instanceHostname}" >About %{instanceUrl}</translate> + <span v-translate="{instanceUrl: instanceHostname}" translate-context="Footer/About/Title">About %{instanceUrl}</span> </h4> <div class="ui link list"> <router-link class="item" to="/about"> -- GitLab