diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-05-22 14:07:25 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-12-13 16:59:39 +0100 |
| commit | 6382ed01e9db8f975b72c9c2c8db4013cd0156c2 (patch) | |
| tree | 0007030148e27fe9152ccb28a91c3497d62b27d8 /src/App.vue | |
| parent | 60186a7bb45a0063f605f8d4b05c2f08418733af (diff) | |
| download | brokentalents-6382ed01e9db8f975b72c9c2c8db4013cd0156c2.tar.gz brokentalents-6382ed01e9db8f975b72c9c2c8db4013cd0156c2.zip | |
Add metadata file to data
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index ff6d081..4dcf698 100644 --- a/src/App.vue +++ b/src/App.vue @@ -19,7 +19,7 @@ <div class="container"> <div class="content has-text-centered"> <p> - Last update: 2018-05-22, with {{ totalMatches }} matches total. + Last update: {{ lastUpdate }}, with {{ totalMatches }} matches total. Join the <a href="https://discord.gg/txTchJY">Discord Server</a> if you have questions. </p> <p> @@ -56,6 +56,7 @@ export default { data: function() { return { totalMatches: Math.floor(this.reportService.getTotalMatches()/100)*100, + lastUpdate: this.reportService.getLastUpdate(), }; }, }; |
