changeset 2930:1019f4d0e18f

protocol: fixed links and layout
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 04 Apr 2019 11:22:25 +0200
parents e5f5afa45451
children f90f2fd94fbc
files client/src/components/Logs.vue
diffstat 1 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/Logs.vue	Thu Apr 04 11:15:19 2019 +0200
+++ b/client/src/components/Logs.vue	Thu Apr 04 11:22:25 2019 +0200
@@ -15,7 +15,9 @@
               <li class="nav-item">
                 <a
                   :class="accesslogStyle"
-                  @click="fetch('system/log/apache2/access.log', 'accesslog')"
+                  @click.prevent="
+                    fetch('system/log/apache2/access.log', 'accesslog')
+                  "
                   href="#"
                 >
                   <translate>Accesslog</translate>
@@ -24,7 +26,9 @@
               <li class="nav-item">
                 <a
                   :class="errorlogStyle"
-                  @click="fetch('system/log/apache2/error.log', 'errorlog')"
+                  @click.prevent="
+                    fetch('system/log/apache2/error.log', 'errorlog')
+                  "
                   href="#"
                 >
                   <translate>Errorlog</translate>
@@ -65,6 +69,7 @@
 
 .logs {
   height: 85vh;
+  width: 100vw;
 }
 
 #code {