Skip to content

Faq #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 6, 2021
Merged

Faq #33

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dashboard/src/components/rmrk/Faq.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<p class="subtitle">
{{qa[1]}}
</p>
<br>
</div>
</div>
</div>
Expand All @@ -28,7 +29,8 @@ export default class extends Vue {
['What wallet do I need to mint, buy and collect?', 'Polkadot extension for now, you can find it in Chrome Store'],
['How to mint my work?','We will have video demo for that'],
['How I can trade KSM for my artwork?','Its supported widely on popular exhchanges, liqudity on exchanges is around $200M, plenty'],
['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']
['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'],
['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.']
];
@Prop() public value!: any;
}
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/components/rmrk/Gallery/Gallery.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
:key="nft.id"
>
<div class="card nft-card">
<router-link :to="`/nft/detail/${nft.id}`" tag="div" class="nft-card__skeleton">
<router-link :to="{ name: 'nftDetail', params: { id: nft.id }}" tag="div" class="nft-card__skeleton">
<div class="card-image" v-if="nft.image">
<b-image
:src="nft.image"
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/components/rmrk/Gallery/GalleryItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
</p>
<a class="card-header-icon">
<b-icon
:icon="props.open ? 'chevron-down' : 'chevron-up'">
:icon="props.open ? 'chevron-up' : 'chevron-down'">
</b-icon>
</a>
</div>
Expand Down