diff --git a/js/src/App.vue b/js/src/App.vue
index 79b809b51..11f6b01d0 100644
--- a/js/src/App.vue
+++ b/js/src/App.vue
@@ -21,55 +21,55 @@ import NavBar from '@/components/NavBar.vue';
import { Component, Vue } from 'vue-property-decorator';
import { AUTH_TOKEN, AUTH_USER_ACTOR, AUTH_USER_EMAIL, AUTH_USER_ID } from '@/constants';
import { CURRENT_USER_CLIENT, UPDATE_CURRENT_USER_CLIENT } from '@/graphql/user';
-import { ICurrentUser } from '@/types/current-user.model'
+import { ICurrentUser } from '@/types/current-user.model';
@Component({
apollo: {
currentUser: {
- query: CURRENT_USER_CLIENT
- }
+ query: CURRENT_USER_CLIENT,
+ },
},
components: {
- NavBar
- }
+ NavBar,
+ },
})
export default class App extends Vue {
drawer = false;
fab = false;
items = [
{
- icon: "poll",
- text: "Events",
- route: "EventList",
- role: null
+ icon: 'poll',
+ text: 'Events',
+ route: 'EventList',
+ role: null,
},
{
- icon: "group",
- text: "Groups",
- route: "GroupList",
- role: null
+ icon: 'group',
+ text: 'Groups',
+ route: 'GroupList',
+ role: null,
},
- { icon: "settings", text: "Settings", role: "ROLE_USER" },
- { icon: "chat_bubble", text: "Send feedback", role: "ROLE_USER" },
- { icon: "help", text: "Help", role: null },
- { icon: "phonelink", text: "App downloads", role: null }
+ { icon: 'settings', text: 'Settings', role: 'ROLE_USER' },
+ { icon: 'chat_bubble', text: 'Send feedback', role: 'ROLE_USER' },
+ { icon: 'help', text: 'Help', role: null },
+ { icon: 'phonelink', text: 'App downloads', role: null },
];
error = {
timeout: 3000,
show: false,
- text: ""
+ text: '',
};
currentUser!: ICurrentUser;
actor = localStorage.getItem(AUTH_USER_ACTOR);
mounted () {
- this.initializeCurrentUser()
+ this.initializeCurrentUser();
}
get displayed_name () {
// FIXME: load actor
- return "no implemented";
+ return 'no implemented';
// return this.actor.display_name === null ? this.actor.username : this.actor.display_name
}
diff --git a/js/src/components/Event/EventCard.vue b/js/src/components/Event/EventCard.vue
index cb6a18f31..9023e1679 100644
--- a/js/src/components/Event/EventCard.vue
+++ b/js/src/components/Event/EventCard.vue
@@ -10,7 +10,7 @@
{{ event.title }}