diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-03-23 15:14:32 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-03-23 15:14:32 +0100 |
commit | 08febdd980c06d752d410be1fa982e5507279f6d (patch) | |
tree | 17ef25b0567097346cfb8ba233b9b1d010984676 /src/components | |
parent | 035241e70d05eb0ae75c79fab6b4052e66ff0464 (diff) |
feat: commit details page
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Commit.vue | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/Commit.vue b/src/components/Commit.vue index 63e1764..a60f40e 100644 --- a/src/components/Commit.vue +++ b/src/components/Commit.vue @@ -32,10 +32,13 @@ | <{{data.committer_email}}></b> .text - p + p(v-if="!expand") | {{ first_line(data.text) }} span.middot ยท span.date {{ data.date | moment("ddd, D MMM YYYY HH:mm:ss ZZ") }} + p(v-else) + pre {{ data.text }} + span.date {{ data.date | moment("ddd, D MMM YYYY HH:mm:ss ZZ") }} </template> <script> @@ -43,7 +46,7 @@ export default { name: 'Commit', // `author` is the hash md5 of the author's gravatar // `committer` is the hash md5 of the committer's gravatar - props: ['data', 'author', 'committer'], + props: ['data', 'author', 'committer', 'expand'], methods: { first_line(text) { return text.split('\n')[0] |