mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-13 05:49:48 +00:00
don't show placeholder if claim already exists
so the claim is shown even if we re-resolve it
This commit is contained in:
parent
95c4b9a78c
commit
2d6292bd6f
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ function ClaimPreviewTile(props: Props) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (placeholder || isResolvingUri) {
|
if (placeholder || (!claim && isResolvingUri)) {
|
||||||
return (
|
return (
|
||||||
<li className={classnames('claim-preview--tile', {})}>
|
<li className={classnames('claim-preview--tile', {})}>
|
||||||
<div className="placeholder media__thumb" />
|
<div className="placeholder media__thumb" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue