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;
|
||||
}
|
||||
|
||||
if (placeholder || isResolvingUri) {
|
||||
if (placeholder || (!claim && isResolvingUri)) {
|
||||
return (
|
||||
<li className={classnames('claim-preview--tile', {})}>
|
||||
<div className="placeholder media__thumb" />
|
||||
|
|
Loading…
Reference in a new issue