Skip to content

Commit

Permalink
eslint issue
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
  • Loading branch information
ArtificialOwl committed Jun 23, 2020
1 parent 5b56b8c commit ad633a7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions src/App.vue
Expand Up @@ -2,7 +2,10 @@
<div v-if="!serverData.setup" id="app-social" :class="{public: serverData.public}">
<app-navigation v-if="!serverData.public" id="app-navigation">
<ul id="app-social-navigation">
<app-navigation-item v-for="item in menu.items" :key="item.key" :to="item.to" :title="item.title" :icon="item.icon" :exact="true" />
<app-navigation-item v-for="item in menu.items" :key="item.key" :to="item.to"
:title="item.title"
:icon="item.icon"
:exact="true" />
</ul>
</app-navigation>
<div id="app-content">
Expand Down Expand Up @@ -72,7 +75,7 @@
}
.setup {
margin: auto;
margin: auto;
width: 700px;
}
Expand All @@ -84,6 +87,7 @@
#social-spacer a:focus {
border: none !important;
}
a.external_link {
text-decoration: underline;
}
Expand Down
10 changes: 5 additions & 5 deletions src/router.js
Expand Up @@ -25,11 +25,11 @@ import Vue from 'vue'
import Router from 'vue-router'

// Dynamic loading
const Timeline = () => import('./views/Timeline')
const TimelineSinglePost = () => import('./views/TimelineSinglePost')
const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile')
const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline')
const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers')
const Timeline = () => import('./views/Timeline.vue')
const TimelineSinglePost = () => import('./views/TimelineSinglePost.vue')
const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile.vue')
const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline.vue')
const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers.vue')

Vue.use(Router)

Expand Down

0 comments on commit ad633a7

Please sign in to comment.