Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit d9c53b2

Browse files
authored
Merge pull request #448 from kodadot/main
fixed dark on tags in nft detail
2 parents 290d6d3 + d0f704e commit d9c53b2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<p class="subtitle is-size-6">
3131
<b>TAGS:</b>
3232
<b-taglist>
33-
<b-tag v-for="(tag, index) in tags" :key="index">{{tag}}</b-tag>
33+
<b-tag type="is-dark" v-for="(tag, index) in tags" :key="index">{{tag}}</b-tag>
3434
</b-taglist>
3535
</p>
3636
<ArweaveLink v-if="nft.imageArId" :id="nft.imageArId" label="image" />

dashboard/src/views/Debug.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ export default class Debug extends Vue {
4949
5050
public async mounted() {
5151
const { api } = Connector.getInstance();
52-
let stashes: any;
53-
this.subs.push(await api.derive.staking.overview((value: any) => this.stakingOverview = value));
54-
this.subs.push(await api.derive.staking.stashes((value: any) => stashes = value));
55-
this.stashIds = stashes.map((accountId: any) => accountId.toString())
56-
this.validators = this.stakingOverview.validators.map((a: any) => a.toString());
57-
this.next = this.stashIds.filter((address: any) => !this.stakingOverview.validators.includes(address as any))
52+
// const stashes: any;
53+
// this.subs.push(await api.derive.staking.overview((value: any) => this.stakingOverview = value));
54+
// this.subs.push(await api.derive.staking.stashes((value: any) => stashes = value));
55+
// this.stashIds = stashes.map((accountId: any) => accountId.toString())
56+
// this.validators = this.stakingOverview.validators.map((a: any) => a.toString());
57+
// this.next = this.stashIds.fi/lter((address: any) => !this.stakingOverview.validators.includes(address as any))
5858
}
5959
6060
private beforeDestroy() {

0 commit comments

Comments
 (0)