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

Commit f89ec44

Browse files
authored
Merge pull request #344 from kodadot/main
Hotfit textile collection bug
2 parents bf1350f + 09b5e5d commit f89ec44

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

dashboard/src/components/landing/Landing.vue

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,15 @@
149149
@KodaDot
150150
</a>
151151
</h2>
152+
153+
<h2 class="title">
154+
<a href="https://calendar.google.com/calendar/u/0/[email protected]" target="_blank">
155+
<b-icon
156+
icon="calendar">
157+
</b-icon>
158+
{{ $t('Community Events') }}
159+
</a>
160+
</h2>
152161
<h2 class="title">
153162
<a href="https://twitter.com/metaprime_net" target="_blank">
154163
<b-icon
@@ -178,6 +187,7 @@
178187
</h2>
179188
</div>
180189
</div>
190+
181191
</div>
182192
</div>
183193
</div>

dashboard/src/components/rmrk/Create/CreateToken.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,9 @@ export default class CreateToken extends Mixins(RmrkVersionMixin) {
160160
const rmrkService = getInstance();
161161
console.log(this.accountId)
162162
console.warn(rmrkService, this.accountId)
163-
const data = await rmrkService?.getCollectionListForAccount(this.accountId);
164-
console.log('data', data);
165-
this.data = data || [];
163+
const data = await rmrkService?.getAllCollections();
164+
console.log('data', data?.length);
165+
this.data = (data || []).filter(({ issuer }) => issuer === this.accountId);
166166
}
167167
168168
get canSubmit() {

dashboard/src/icons.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ import {
2525
faQuestion, faPrint,
2626
faMagic, faEye, faCommentAlt,
2727
faGhost, faCode, faLeaf,
28-
faFlask, faCameraRetro, faTag, faShareAlt, faExclamationTriangle
28+
faFlask, faCameraRetro, faTag,
29+
faShareAlt, faExclamationTriangle,
30+
faCalendar
2931
} from '@fortawesome/free-solid-svg-icons';
3032

3133
// throws error, idk why
@@ -69,6 +71,7 @@ library.add(
6971
faLanguage, faQuestion, faEye,
7072
faPrint, faCommentAlt, faMagic,
7173
faLeaf, faFlask,
74+
faCalendar,
7275

7376
faTwitter, faTelegram, faFacebook, faMedium,
7477
faLine, faTelegramPlane,

0 commit comments

Comments
 (0)