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">
|
<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>
|
||||||
|
|
|
@ -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%;
|
||||||
|
|
Loading…
Reference in a new issue