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"
|
className="card-row__scrollhouse"
|
||||||
>
|
>
|
||||||
{names &&
|
{names && names.map(name => <FileCard key={name} uri={normalizeURI(name)} />)}
|
||||||
names.map(name => <FileCard key={name} displayStyle="card" uri={normalizeURI(name)} />)}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -166,7 +166,7 @@ class FileList extends React.PureComponent<Props, State> {
|
||||||
|
|
||||||
const uri = buildURI(uriParams);
|
const uri = buildURI(uriParams);
|
||||||
|
|
||||||
content.push(<FileCard key={uri} uri={uri} showPrice={false} />);
|
content.push(<FileCard key={uri} uri={uri} />);
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue