We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8657112 + 336d3f5 commit 31c2765Copy full SHA for 31c2765
dashboard/src/components/landing/Landing.vue
@@ -37,7 +37,7 @@
37
v-for="c in creators"
38
:key="c">
39
<router-link :to="{ name: 'profile', params: { id: c } }">
40
- {{ c | shortAddress }}
+ <Identity :address="c" :inline="true" />
41
</router-link>
42
</li>
43
</h2>
@@ -171,8 +171,10 @@
171
</template>
172
<script lang="ts">
173
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
174
-
175
-@Component({})
+const components = {
+ Identity: () => import('@/components/shared/format/Identity.vue'),
176
+};
177
+@Component({ components })
178
export default class Landing extends Vue {
179
public publicCommunity: any = [
180
['🇦🇲 Armenia', 'https://t.me/kodadotarmenia'],
0 commit comments