Fix indentation/formatting
This commit is contained in:
parent
c282b438e4
commit
6f855e22c4
10
src/App.vue
10
src/App.vue
|
@ -2,8 +2,8 @@
|
|||
<div id="content" class="app-upschooling">
|
||||
<AppNavigation>
|
||||
<AppNavigationCaption title="Meine Support-Tickets" />
|
||||
<template>
|
||||
<AppNavigationItem v-for="item in tickets" :key="item.ticketId" v-bind:title="item.title" @click="openTicket(item.ticketId)" />
|
||||
<template v-for="item in tickets">
|
||||
<AppNavigationItem :key="item.ticketId" :title="item.title" @click="openTicket(item.ticketId)" />
|
||||
<!-- TODO: show only proper tickets -->
|
||||
</template>
|
||||
</AppNavigation>
|
||||
|
@ -36,7 +36,7 @@ export default {
|
|||
AppContent,
|
||||
AppNavigation,
|
||||
AppNavigationItem,
|
||||
AppNavigationCaption
|
||||
AppNavigationCaption,
|
||||
},
|
||||
|
||||
data() {
|
||||
|
@ -111,8 +111,8 @@ export default {
|
|||
this.currentTicket = null
|
||||
},
|
||||
newTicket() {
|
||||
//TODO generate new empty ticket
|
||||
}
|
||||
// TODO: generate new empty ticket
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -81,13 +81,12 @@ export default {
|
|||
},
|
||||
newTicket() {
|
||||
this.$emit('new-ticket')
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -107,6 +106,7 @@ export default {
|
|||
a:hover .ticket-number, a:focus .ticket-number, a:active .ticket-number {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.header-bar {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
|
|
Loading…
Reference in a new issue