Skip to content
This repository has been archived by the owner on Jul 7, 2023. It is now read-only.

Commit

Permalink
feat(home): update display of changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
BenShelton committed Oct 19, 2019
1 parent 69fcf1f commit 237c728
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Click the navigation menu on the top left to login and navigate the site
</p>
<h2>Changelog</h2>
<v-expansion-panel class="mt-3">
<v-expansion-panel v-model="panel" expand class="mt-3">
<v-expansion-panel-content v-for="(change, index) of changes" :key="index">
<template v-slot:header>
<v-layout align-center class="no-select">
Expand All @@ -30,6 +30,7 @@
</v-layout>
</template>
<v-card class="grey lighten-4">
<v-card-title class="headline" v-text="change.summary" />
<v-card-text>
<div v-for="update of change.updates" :key="update.title">
<h3 v-text="update.title" />
Expand Down Expand Up @@ -60,6 +61,10 @@ interface IChange {
export default Vue.extend({
name: 'Home',
data: () => ({
panel: [true]
}),
computed: {
changes (): IChange[] {
return [
Expand Down

0 comments on commit 237c728

Please sign in to comment.