This commit is contained in:
Sean Yesmunt 2019-07-17 18:48:11 -04:00
parent f1dceebcb4
commit f35ef119ac
3 changed files with 4 additions and 1 deletions

View file

@ -38,7 +38,7 @@ function ChannelContent(props: Props) {
{hasContent && <ClaimList header={false} uris={claimsInChannel.map(claim => claim.permanent_url)} />}
<Paginate
onPageChange={page => fetchClaims(uri, page)}
onPageChange={page => console.log('fetch') || fetchClaims(uri, page)}
totalPages={totalPages}
loading={fetching && !hasContent}
/>

View file

@ -60,6 +60,7 @@ function ChannelPage(props: Props) {
return (
<Page>
{window.location.href}
<div className="card">
<header className="channel-cover">
{!editing && cover && <img className="channel-cover__custom" src={cover} />}

View file

@ -11,6 +11,8 @@
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding-left: var(--spacing-large);
padding-right: var(--spacing-large);
padding-bottom: var(--spacing-main-padding);
}