From 9a22155a533332b30128de80b8297cef484d94a3 Mon Sep 17 00:00:00 2001
From: "Henrik.Askjer" <henrik.askjer@uib.no>
Date: Mon, 1 Nov 2021 13:52:03 +0100
Subject: [PATCH] Hotfix hyperlink whitespace

---
 .gitlab-ci.yml                  | 4 ++--
 src/components/CompoundList.vue | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 262e9bfa..ba2c72e4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,7 +11,7 @@ workflow:
     - if: $CI_COMMIT_TAG != null
 
 build-dev:
-  image: node:latest
+  image: node:16
   tags:
     - spraaksamlingene_01
   stage: build
@@ -36,7 +36,7 @@ build-dev:
       - dist
 
 build-prod:
-  image: node:latest
+  image: node:16
   tags:
     - spraaksamlingene_01
   stage: build
diff --git a/src/components/CompoundList.vue b/src/components/CompoundList.vue
index 0189fc94..fd02c852 100644
--- a/src/components/CompoundList.vue
+++ b/src/components/CompoundList.vue
@@ -5,10 +5,10 @@
       <li
         :key="index"
         v-for="(item, index) in body.elements"
-        ><router-link
+        >{{' '}}<router-link
           :to="'/' + dictionary + '/' + item.article_id + (item.definition_id ? '#def'+item.definition_id : '')"
           @click.native="article_link_click(item)"
-          > {{item.lemmas[0].lemma}}</router-link>
+          >{{item.lemmas[0].lemma}}</router-link>
       </li>
     </ul>
   </li>
-- 
GitLab