Skip to content

Commit ad633a7

Browse files
committed
eslint issue
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 parent 5b56b8c commit ad633a7

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

src/App.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
<div v-if="!serverData.setup" id="app-social" :class="{public: serverData.public}">
33
<app-navigation v-if="!serverData.public" id="app-navigation">
44
<ul id="app-social-navigation">
5-
<app-navigation-item v-for="item in menu.items" :key="item.key" :to="item.to" :title="item.title" :icon="item.icon" :exact="true" />
5+
<app-navigation-item v-for="item in menu.items" :key="item.key" :to="item.to"
6+
:title="item.title"
7+
:icon="item.icon"
8+
:exact="true" />
69
</ul>
710
</app-navigation>
811
<div id="app-content">
@@ -72,7 +75,7 @@
7275
}
7376
7477
.setup {
75-
margin: auto;
78+
margin: auto;
7679
width: 700px;
7780
}
7881
@@ -84,6 +87,7 @@
8487
#social-spacer a:focus {
8588
border: none !important;
8689
}
90+
8791
a.external_link {
8892
text-decoration: underline;
8993
}

src/router.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ import Vue from 'vue'
2525
import Router from 'vue-router'
2626

2727
// Dynamic loading
28-
const Timeline = () => import('./views/Timeline')
29-
const TimelineSinglePost = () => import('./views/TimelineSinglePost')
30-
const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile')
31-
const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline')
32-
const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers')
28+
const Timeline = () => import('./views/Timeline.vue')
29+
const TimelineSinglePost = () => import('./views/TimelineSinglePost.vue')
30+
const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile.vue')
31+
const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline.vue')
32+
const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers.vue')
3333

3434
Vue.use(Router)
3535

0 commit comments

Comments
 (0)