fix: sort by height on channel page

This commit is contained in:
Sean Yesmunt 2018-04-23 01:49:52 -04:00
parent 926eb7456c
commit 60c2308511
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ class ChannelPage extends React.PureComponent<Props> {
} else {
contentList =
claimsInChannel && claimsInChannel.length ? (
<FileList hideFilter fileInfos={claimsInChannel} />
<FileList sortByHeight hideFilter fileInfos={claimsInChannel} />
) : (
<span className="empty">{__('No content found.')}</span>
);

View file

@ -111,7 +111,7 @@ $large-breakpoint: 1760px;
--header-bg: var(--color-white);
--header-color: var(--color-text);
--header-active-color: rgba(0, 0, 0, 0.85);
--header-height: $spacing-width * 3;
--header-height: 75px;
--header-button-bg: transparent;
--header-button-hover-bg: rgba(100, 100, 100, 0.15);
--header-primary-color: var(--color-primary);