This repository was archived by the owner on Dec 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +422
-214
lines changed
pages/drop-checker/[chain] Expand file tree Collapse file tree 3 files changed +422
-214
lines changed Original file line number Diff line number Diff line change 114114 "devDependencies" : {
115115 "@0no-co/graphqlsp" : " ^1.12.14" ,
116116 "@dargmuesli/nuxt-cookie-control" : " ^7.5.1" ,
117+ "@iconify-json/mdi" : " ^1.2.3" ,
117118 "@nuxt/content" : " ^2.13.2" ,
118119 "@nuxt/eslint" : " ^0.3.13" ,
119- "@nuxt/icon" : " 1.10.3 " ,
120+ "@nuxt/icon" : " ^1.12.0 " ,
120121 "@nuxt/types" : " ^2.18.1" ,
121122 "@nuxtjs/color-mode" : " ^3.5.1" ,
122123 "@nuxtjs/device" : " ^3.2.2" ,
Original file line number Diff line number Diff line change 200200 <td class =" align-middle" >
201201 <div v-if =" drop[0] === 'image' || drop[0] === 'banner'" >
202202 <img
203- :src =" sanitizeIpfsUrl(drop[1].toString())"
203+ :src =" sanitizeIpfsUrl(drop[1]? .toString())"
204204 width =" 100"
205205 >
206206 </div >
207207 <div v-else-if =" drop[0] === 'content'" >
208208 <iframe
209- :src =" sanitizeIpfsUrl(drop[1].toString())"
209+ :src =" sanitizeIpfsUrl(drop[1]? .toString())"
210210 frameborder =" 0"
211211 title =" genart"
212212 />
213213 </div >
214214 <div v-else-if =" drop[0] === 'price'" >
215- : {{ formatAmountWithRound(drop[1].toString(), decimals) }}
215+ : {{ formatAmountWithRound(drop[1]? .toString() || '' , decimals) }}
216216 {{ chainSymbol }}
217217 </div >
218218 <div v-else >
@@ -316,7 +316,7 @@ import { formatAmountWithRound } from '@/utils/format/balance'
316316
317317const { params } = useRoute ()
318318const chain = params .chain .toString ()
319- const collectionId = params [ ' collectionid ' ] .toString ()
319+ const collectionId = params . collection .toString ()
320320
321321const { chainSymbol, decimals } = useChain ()
322322
You can’t perform that action at this time.
0 commit comments