From 8ddf59666b38f3cc4ce9545f199cb1e9ead32292 Mon Sep 17 00:00:00 2001
From: Xenia <gruenzingerxe68435@th-nuernberg.de>
Date: Tue, 9 Jul 2019 12:37:21 +0200
Subject: [PATCH] =?UTF-8?q?link=20zu=20button=20ge=C3=A4ndert=20->=20Tagsu?=
 =?UTF-8?q?che=20durch=20"link"?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 public/index.html        | 1 -
 public/routes/msgCard.js | 5 +++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/public/index.html b/public/index.html
index bd3679b..dec2949 100644
--- a/public/index.html
+++ b/public/index.html
@@ -101,7 +101,6 @@
                 <form class="om-searchbar" @submit.prevent="search()">
                     <b-field>
 						<b-autocomplete
-							id="searchtext"
 							rounded
 							v-model="searchtext"
                             @keydown.native.enter="search"
diff --git a/public/routes/msgCard.js b/public/routes/msgCard.js
index ffd77a0..de5f075 100644
--- a/public/routes/msgCard.js
+++ b/public/routes/msgCard.js
@@ -5,7 +5,8 @@ Vue.component('MsgCard', {
                 <img src="favicon.ico" width=20px height=20px>
                 </h6>
                 {{ msg.message }}<br><br>
-                <a v-for="tag in msg.tag" href="#">#{{ tag }} </a>
+                <!--<a v-for="tag in msg.tag" href="#">#{{ tag }} </a>-->
+				<b-button class="tags" type="is-text" v-for="tag in msg.tag>#{{ tag }} </b-button>
 				</p>
                 <div class="om-card-footer"> <div class="om-user-line">
                 <i class="material-icons">account_circle</i>
@@ -22,7 +23,7 @@ Vue.component('MsgCard', {
     },
 
     methods: {
-           myFilter: function() {
+        myFilter: function() {
             this.isActive = !this.isActive;
         },
     }