Skip to content
Snippets Groups Projects
Commit c41b488e authored by moon's avatar moon
Browse files

#82: Initial string error fixed

parent f58d4bed
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@
"
>
<div class="text-right px-8 w-full">
Last updated: {{ lastUpdated.toLocaleDateString() + ' ' + lastUpdated.toLocaleTimeString() }}
Last updated: {{ lastUpdated ? lastUpdated.toLocaleDateString() + ' ' + lastUpdated.toLocaleTimeString() : '' }}
</div>
<div class="px-4 flex mb-2 flex-wrap w-full items-center justify-between">
<div class="ml-4">
......@@ -509,6 +509,7 @@
</template>
<script>
const _ = require('lodash');
export default {
data() {
return {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment