Skip to content

Commit e23018d

Browse files
authored
Merge pull request #33 from kodadot/faq
Faq
2 parents df294dc + 81d3b54 commit e23018d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

dashboard/src/components/rmrk/Faq.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<p class="subtitle">
1313
{{qa[1]}}
1414
</p>
15+
<br>
1516
</div>
1617
</div>
1718
</div>
@@ -28,7 +29,8 @@ export default class extends Vue {
2829
['What wallet do I need to mint, buy and collect?', 'Polkadot extension for now, you can find it in Chrome Store'],
2930
['How to mint my work?','We will have video demo for that'],
3031
['How I can trade KSM for my artwork?','Its supported widely on popular exhchanges, liqudity on exchanges is around $200M, plenty'],
31-
['How I can buy KSM?', 'We have integration with Ramp.network. You can use Revolut, Manual bank transfer, Debit Card and Apple Pay to top-up']
32+
['How I can buy KSM?', 'We have integration with Ramp.network. You can use Revolut, Manual bank transfer, Debit Card and Apple Pay to top-up'],
33+
['Ive got errors, how to resolve them?', 'We are trying delivering incremental updates & fixes ASAP and may we published new version and your browser has cached old one. If you are on Windows, try hold down Ctrl and then press F5. Mac users, hold down CMD and Shift and then press R. If this did not help, DMs on Twitter with screenshot where is developer console open.']
3234
];
3335
@Prop() public value!: any;
3436
}

dashboard/src/components/rmrk/Gallery/Gallery.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
:key="nft.id"
2121
>
2222
<div class="card nft-card">
23-
<router-link :to="`/nft/detail/${nft.id}`" tag="div" class="nft-card__skeleton">
23+
<router-link :to="{ name: 'nftDetail', params: { id: nft.id }}" tag="div" class="nft-card__skeleton">
2424
<div class="card-image" v-if="nft.image">
2525
<b-image
2626
:src="nft.image"

dashboard/src/components/rmrk/Gallery/GalleryItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
</p>
115115
<a class="card-header-icon">
116116
<b-icon
117-
:icon="props.open ? 'chevron-down' : 'chevron-up'">
117+
:icon="props.open ? 'chevron-up' : 'chevron-down'">
118118
</b-icon>
119119
</a>
120120
</div>

0 commit comments

Comments
 (0)