-
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
Merged
Merged
#645 | IPFS NFTs #665
Changes from 27 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
1dc08c8
add owners table
ezra-sg d88f84e
add address search
ezra-sg e211ad8
WIP refator transfer form to own component
ezra-sg 73ab5e4
Merge branch '499-erc1155-inventory-updates' into 658-erc1155-transfe…
ezra-sg ec2ee00
WIP add integer input
ezra-sg e34347a
move constants to helpers file
ezra-sg 94e84fa
finish and integrate integer input
ezra-sg d61d14d
extract common input styles
ezra-sg ea8179a
add focusinput method
ezra-sg c1adc78
improve aria for inputs
ezra-sg 7c22e84
improve currency input keyboard a11y
ezra-sg 2b73211
update snaps
ezra-sg 9bc8bb1
fix back navigation on nft detail page
ezra-sg 593014f
fix vmodel, enable transfers for 1155
ezra-sg b66f0e5
fix owners tab
ezra-sg d8cb203
update coverage
ezra-sg 465caa4
fix owners tab logic
ezra-sg 5030648
add name to owners table addy search
ezra-sg 7ca6a21
Merge branch 'develop' of https://github.com/telosnetwork/telos-walle…
donnyquixotic 11f9631
attempt to fix nft not loading
ezra-sg 1c9f3f5
Merge branch '658-erc1155-transfers-and-owners' of github.com:telosne…
ezra-sg cb1c90e
attempt to fix infiniload 2
ezra-sg 64c6044
show total owners when logged out
ezra-sg 03ca227
fix loading state after xfer, fix tab order
ezra-sg d03f03c
Merge branch 'develop' of github.com:telosnetwork/telos-wallet into 6…
ezra-sg e3e8e64
Merge branch 'develop' of github.com:telosnetwork/telos-wallet into 6…
ezra-sg 4912f5c
fix nft icon video hover, support ipfs
ezra-sg f297e0d
jsdoc
ezra-sg c2d5b79
fix stacking issue
ezra-sg b122397
fix stacking issue 2
ezra-sg d817970
coverage
ezra-sg a4fc6e2
adding global web3Provider for all cases
Viterbo 8ad8162
typo
ezra-sg 2bad251
Merge branch '666-we-need-a-provider-to-read-data-when-the-user-os-no…
ezra-sg 63faf57
attempt to fix broken NFT detail page when logged out
ezra-sg 79e370f
covfefe
ezra-sg 5129867
replace magic string with const
ezra-sg e0a6c65
Merge branch 'develop' of https://github.com/telosnetwork/telos-walle…
donnyquixotic 850820a
revert type changes
ezra-sg 6aba824
Merge branch '645-ipfs-nfts' of github.com:telosnetwork/telos-wallet …
ezra-sg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<script setup lang="ts"> | ||
import { computed, ref, watch, onMounted, onUnmounted, toRaw } from 'vue'; | ||
import { computed, ref, watch, onMounted, onUnmounted } from 'vue'; | ||
import { storeToRefs } from 'pinia'; | ||
import { useRoute, useRouter } from 'vue-router'; | ||
import { useI18n } from 'vue-i18n'; | ||
|
||
|
@@ -18,7 +19,6 @@ import { truncateText } from 'src/antelope/stores/utils/text-utils'; | |
import EVMChainSettings from 'src/antelope/chains/EVMChainSettings'; | ||
import TableControls from 'components/evm/TableControls.vue'; | ||
import { truncateAddress } from 'src/antelope/stores/utils/text-utils'; | ||
import { storeToRefs } from 'pinia'; | ||
|
||
|
||
const nftStore = useNftsStore(); | ||
|
@@ -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 commentThe 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 |
||
<NftViewer | ||
:nft="getNftForViewer(props.row)" | ||
:previewMode="false" | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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