]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - src/App.vue
Adding PWA icons for proper pwa support
[github/bastienwirtz/homer.git] / src / App.vue
index a35699785df88cd9ebf2903e6118d64555c0f245..8185da212c260f672ec5defd9957349a918c6d63 100644 (file)
@@ -13,7 +13,7 @@
       <section v-if="config.header" class="first-line">
         <div v-cloak class="container">
           <div class="logo">
-            <img v-if="config.logo" :src="config.logo" />
+            <img v-if="config.logo" :src="config.logo" alt="dashboard logo" />
             <i v-if="config.icon" :class="config.icon"></i>
           </div>
           <div class="dashboard-title">
@@ -151,8 +151,6 @@ export default {
       let config = await this.getConfig();
 
       this.config = merge(defaults, config);
-
-      console.log(this.config);
       this.services = this.config.services;
       document.title = `${this.config.title} | ${this.config.subtitle}`;
     } catch (error) {