From 03d89bca7f3b0a082133e87bc0acb439cbae20e6 Mon Sep 17 00:00:00 2001 From: hippoz Date: Sat, 21 Nov 2020 13:01:02 +0200 Subject: [PATCH] add icons to some things --- app/app.html | 12 ++++++------ app/resources/js/app.js | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/app.html b/app/app.html index 39fc1e0..23f9d77 100755 --- a/app/app.html +++ b/app/app.html @@ -131,8 +131,8 @@ {{ loggedInUser.username }} - Manage account - Debug info and shit + Manage accountperson + Debug info and shitcode @@ -144,8 +144,8 @@ Browsing {{ selection.category.title }} with {{ user.user.username }} - Back - Refresh + arrow_back + refresh
@@ -158,7 +158,7 @@ - {{ button.text }} + {{ button.text }}
@@ -193,7 +193,7 @@ - +
diff --git a/app/resources/js/app.js b/app/resources/js/app.js index 686b079..f855624 100755 --- a/app/resources/js/app.js +++ b/app/resources/js/app.js @@ -320,12 +320,12 @@ const app = new Vue({ this.cardButtons = []; - this.button('Chat', (post) => { + this.button('chat', (post) => { if (post._id) { this.openChatForCategory(post._id); } }); - this.button('View', (post) => { + this.button('topic', (post) => { this.browse(post); });