Skip to content

Commit 9df29d7

Browse files
committed
fix: invokeUrlAction condition
1 parent 5fd860a commit 9df29d7

File tree

1 file changed

+1
-1
lines changed
  • javascript/tokenscript-viewer/src/components/common/tokens-grid

1 file changed

+1
-1
lines changed

javascript/tokenscript-viewer/src/components/common/tokens-grid/tokens-grid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export class TokensGrid {
162162
return;
163163
}
164164

165-
if (!this.currentTokensFlat.length)
165+
if (!this.currentTokensFlat.length && !this.notOwnedTokens.length)
166166
return;
167167

168168
for (let token of [...this.currentTokensFlat, ...this.notOwnedTokens]){

0 commit comments

Comments
 (0)