Fix indentation/formatting

This commit is contained in:
Ben 2022-07-21 13:00:12 +02:00
parent c282b438e4
commit 6f855e22c4
Signed by: ben
GPG Key ID: 0F54A7ED232D3319
2 changed files with 82 additions and 82 deletions

View File

@ -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>

View File

@ -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%;