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() {
@ -110,9 +110,9 @@ export default {
deselectTicket() {
this.currentTicket = null
},
newTicket(){
//TODO generate new empty ticket
}
newTicket() {
// TODO: generate new empty ticket
},
},
}
</script>

View File

@ -1,5 +1,5 @@
<template>
<div class="ticketlist">
<div class="ticketlist">
<div class="header-bar">
<button @click="newTicket">
{{ t('upschooling', 'Neues Ticket') }}
@ -57,7 +57,7 @@
</tr>
</tbody>
</table>
</div>
</div>
</template>
<script>
@ -81,33 +81,33 @@ export default {
},
newTicket() {
this.$emit('new-ticket')
}
},
},
}
</script>
<style scoped>
table {
table {
width: 100%;
}
}
td {
td {
border-bottom: solid #000 1px;
}
}
tr:nth-child(2n) {
tr:nth-child(2n) {
background: #f0f0f0;
}
}
a .ticket-number {
a .ticket-number {
opacity: 0.5;
}
}
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;
}
.header-bar {
}
.header-bar {
display: flex;
width: 100%;
flex-direction: row-reverse;