changeset 1490:6c889a0cdb3b

linting
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 04 Dec 2018 14:41:32 +0100
parents a9594f7d44b7
children a6824fd3d30c
files client/src/components/admin/Logs.vue
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/admin/Logs.vue	Tue Dec 04 13:48:50 2018 +0100
+++ b/client/src/components/admin/Logs.vue	Tue Dec 04 14:41:32 2018 +0100
@@ -6,7 +6,7 @@
         <h6
           class="mb-0 py-2 px-3 border-bottom d-flex text-info align-items-center"
         >
-          <font-awesome-icon icon="book" class="mr-2"></font-awesome-icon>
+          <font-awesome-icon class="mr-2" icon="book"></font-awesome-icon>
           <translate class="headline">Logs</translate>
         </h6>
         <div class="logoutput text-left bg-white">
@@ -19,8 +19,8 @@
             <ul class="nav nav-pills">
               <li class="nav-item">
                 <a
+                  :class="accesslogStyle"
                   @click="fetch('system/log/apache2/access.log', 'accesslog')"
-                  :class="accesslogStyle"
                   href="#"
                 >
                   <translate>Accesslog</translate>
@@ -28,8 +28,8 @@
               </li>
               <li class="nav-item">
                 <a
+                  :class="errorlogStyle"
                   @click="fetch('system/log/apache2/error.log', 'errorlog')"
-                  :class="errorlogStyle"
                   href="#"
                 >
                   <translate>Errorlog</translate>
@@ -43,8 +43,8 @@
             </div>
             <div class="refresh">
               <button
+                @click="fetch(currentFile, currentLog)"
                 class="btn btn-dark"
-                @click="fetch(currentFile, currentLog)"
               >
                 <translate>Refresh</translate>
               </button>