use claimName instead of uri while loading
This commit is contained in:
parent
3bda96f7c2
commit
45424e016f
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
// @flow
|
||||
import React from 'react';
|
||||
import { parseURI } from 'lbry-redux';
|
||||
import BusyIndicator from 'component/common/busy-indicator';
|
||||
import ChannelPage from 'page/channel';
|
||||
import FilePage from 'page/file';
|
||||
|
@ -39,10 +40,11 @@ class ShowPage extends React.PureComponent<Props> {
|
|||
let innerContent = '';
|
||||
|
||||
if ((isResolvingUri && !claim) || !claim) {
|
||||
const { claimName } = parseURI(uri);
|
||||
innerContent = (
|
||||
<Page>
|
||||
<section className="card">
|
||||
<h1>{uri}</h1>
|
||||
<h1>{claimName}</h1>
|
||||
<div className="card__content">
|
||||
{isResolvingUri && <BusyIndicator message={__('Loading decentralized data...')} />}
|
||||
{claim === null &&
|
||||
|
|
Loading…
Reference in a new issue