fix: show price on channel page
This commit is contained in:
parent
0445737306
commit
acef054613
2 changed files with 2 additions and 3 deletions
|
@ -234,8 +234,7 @@ class CategoryList extends React.PureComponent<Props, State> {
|
|||
}}
|
||||
className="card-row__scrollhouse"
|
||||
>
|
||||
{names &&
|
||||
names.map(name => <FileCard key={name} displayStyle="card" uri={normalizeURI(name)} />)}
|
||||
{names && names.map(name => <FileCard key={name} uri={normalizeURI(name)} />)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -166,7 +166,7 @@ class FileList extends React.PureComponent<Props, State> {
|
|||
|
||||
const uri = buildURI(uriParams);
|
||||
|
||||
content.push(<FileCard key={uri} uri={uri} showPrice={false} />);
|
||||
content.push(<FileCard key={uri} uri={uri} />);
|
||||
});
|
||||
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue