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"> <div id="content" class="app-upschooling">
<AppNavigation> <AppNavigation>
<AppNavigationCaption title="Meine Support-Tickets" /> <AppNavigationCaption title="Meine Support-Tickets" />
<template> <template v-for="item in tickets">
<AppNavigationItem v-for="item in tickets" :key="item.ticketId" v-bind:title="item.title" @click="openTicket(item.ticketId)" /> <AppNavigationItem :key="item.ticketId" :title="item.title" @click="openTicket(item.ticketId)" />
<!-- TODO: show only proper tickets --> <!-- TODO: show only proper tickets -->
</template> </template>
</AppNavigation> </AppNavigation>
@ -36,7 +36,7 @@ export default {
AppContent, AppContent,
AppNavigation, AppNavigation,
AppNavigationItem, AppNavigationItem,
AppNavigationCaption AppNavigationCaption,
}, },
data() { data() {
@ -111,8 +111,8 @@ export default {
this.currentTicket = null this.currentTicket = null
}, },
newTicket() { newTicket() {
//TODO generate new empty ticket // TODO: generate new empty ticket
} },
}, },
} }
</script> </script>

View file

@ -81,13 +81,12 @@ export default {
}, },
newTicket() { newTicket() {
this.$emit('new-ticket') this.$emit('new-ticket')
} },
}, },
} }
</script> </script>
<style scoped> <style scoped>
table { table {
width: 100%; width: 100%;
} }
@ -107,6 +106,7 @@ export default {
a:hover .ticket-number, a:focus .ticket-number, a:active .ticket-number { a:hover .ticket-number, a:focus .ticket-number, a:active .ticket-number {
opacity: 1; opacity: 1;
} }
.header-bar { .header-bar {
display: flex; display: flex;
width: 100%; width: 100%;