diff --git a/src/ui/component/channelTile/view.jsx b/src/ui/component/channelTile/view.jsx index 14c616f2d..fcc1317ef 100644 --- a/src/ui/component/channelTile/view.jsx +++ b/src/ui/component/channelTile/view.jsx @@ -50,21 +50,21 @@ class ChannelTile extends React.PureComponent { return (
-
- {isResolvingUri &&
{__('Loading...')}
} +
+ {isResolvingUri &&
{__('Loading...')}
} {!isResolvingUri && ( -
+
-
+
{totalItems > 0 && ( {totalItems} {totalItems === 1 ? 'publish' : 'publishes'} @@ -75,8 +75,8 @@ class ChannelTile extends React.PureComponent { )} {subscriptionUri && ( -
- +
+
)}
diff --git a/src/ui/component/walletBalance/view.jsx b/src/ui/component/walletBalance/view.jsx index fc536d87f..fabc90fdb 100644 --- a/src/ui/component/walletBalance/view.jsx +++ b/src/ui/component/walletBalance/view.jsx @@ -11,14 +11,14 @@ const WalletBalance = (props: Props) => { const { balance } = props; return (
-
-

{__('Balance')}

-

{__('You currently have')}

+
+

{__('Balance')}

+

{__('You currently have')}

-
+
{(balance || balance === 0) && ( )} diff --git a/src/ui/page/channel/view.jsx b/src/ui/page/channel/view.jsx index 004e718cc..ab57589ef 100644 --- a/src/ui/page/channel/view.jsx +++ b/src/ui/page/channel/view.jsx @@ -80,21 +80,21 @@ class ChannelPage extends React.PureComponent { claimsInChannel && claimsInChannel.length ? ( ) : ( - !fetching && {__('No content found.')} + !fetching && {__('No content found.')} ); return ( -
-

+
+

{name} {fetching && }

-
+
-
{contentList}
+
{contentList}
{(!fetching || (claimsInChannel && claimsInChannel.length)) && totalPages > 1 && (
- + this.changePage(e.selected + 1)} forcePage={currentPage} initialPage={currentPage} - containerClassName='pagination' + containerClassName="pagination" /> this.paginate(e, totalPages)} label={__('Go to page:')} - type='text' - name='paginate-file' + type="text" + name="paginate-file" /> )} - {!channelIsMine && } + {!channelIsMine && } ); }