fix: sort by height on channel page
This commit is contained in:
parent
926eb7456c
commit
60c2308511
2 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue