Skip to content

Commit 6dac379

Browse files
committed
Add LastUpdated to the organizations page
1 parent 9132cb6 commit 6dac379

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pages/organizations/index.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<div class="page-container">
33
<Hero title="Organizations" />
4+
<LastUpdated />
45
<div class="area-chart-section">
56
<div class="chart-header">
67
<div class="divider-black"></div>
@@ -21,12 +22,14 @@
2122
</template>
2223

2324
<script>
25+
import LastUpdated from '~/components/LastUpdated.vue'
2426
export default {
2527
name: 'OrganizationsPage',
2628
components: {
2729
Hero: () => import('~/components/Hero.vue'),
2830
AreaChart: () => import('~/components/AreaChart.vue'),
2931
TopOrganizations: () => import('~/components/TopOrganizations.vue'),
32+
LastUpdated,
3033
},
3134
data() {
3235
return {

0 commit comments

Comments
 (0)