-
Notifications
You must be signed in to change notification settings - Fork 8
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
#645 | IPFS NFTs #665
#645 | IPFS NFTs #665
Conversation
…into 658-erc1155-transfers-and-owners
…twork/telos-wallet into 658-erc1155-transfers-and-owners
…58-erc1155-transfers-and-owners
…58-erc1155-transfers-and-owners
✅ Deploy Preview for wallet-staging ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for wallet-develop-mainnet ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -92,7 +92,7 @@ export default abstract class EVMChainSettings implements ChainSettings { | |||
|
|||
// Interceptor handlers -- these handlers are used to limit the number of concurrent requests | |||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | |||
const requestHandler = (value: InternalAxiosRequestConfig) => new Promise<InternalAxiosRequestConfig<any>>((resolve) => { | |||
const requestHandler = (value: any) => new Promise<any>((resolve) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix new error saying InternalAxiosRequestConfig
does not exist
@@ -447,7 +447,7 @@ onUnmounted(() => { | |||
@click="goToDetailPage(props.row)" | |||
@keydown.space.enter.prevent="goToDetailPage(props.row)" | |||
> | |||
<template v-if="props.row.image"> | |||
<template v-if="props.row.image || props.row.isVideo"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix the issue where the hover preview for NFT tile icons would not show for video NFTs
@@ -398,7 +398,12 @@ function setHoverPreviewVisibility(visible: boolean) { | |||
&--preview { | |||
max-height: 270px; | |||
|
|||
#{$this}__image { | |||
#{$this}__video-container { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix grid blowout for tall videos
…t-logged' of github.com:telosnetwork/telos-wallet into 645-ipfs-nfts
158852f
to
2bad251
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, clean and working! 👍
Just the way I like it 👌
Fixes #645
Includes work by @Viterbo from #667
Description
This PR enables viewing of IPFS NFTs. It also fixes a few issues:
Test scenarios
Hover working for video NFTs:
Recording.2023-11-13.165354.mp4
Checklist: