Skip to content

Commit 31c2765

Browse files
authored
Merge pull request #235 from anettrolikova/main
added identity to landing page
2 parents 8657112 + 336d3f5 commit 31c2765

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

dashboard/src/components/landing/Landing.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
v-for="c in creators"
3838
:key="c">
3939
<router-link :to="{ name: 'profile', params: { id: c } }">
40-
{{ c | shortAddress }}
40+
<Identity :address="c" :inline="true" />
4141
</router-link>
4242
</li>
4343
</h2>
@@ -171,8 +171,10 @@
171171
</template>
172172
<script lang="ts">
173173
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
174-
175-
@Component({})
174+
const components = {
175+
Identity: () => import('@/components/shared/format/Identity.vue'),
176+
};
177+
@Component({ components })
176178
export default class Landing extends Vue {
177179
public publicCommunity: any = [
178180
['🇦🇲 Armenia', 'https://t.me/kodadotarmenia'],

0 commit comments

Comments
 (0)