do not display "PRICE" #1518

Merged
daovist merged 1 commit from price-display into master 2018-05-30 04:43:42 +02:00
Showing only changes of commit 9e6270ad0e - Show all commits

View file

@ -35,20 +35,14 @@ class FilePrice extends React.PureComponent<Props> {
render() { render() {
const { costInfo, showFullPrice } = this.props; const { costInfo, showFullPrice } = this.props;
const isEstimate = costInfo ? !costInfo.includesData : false; return costInfo ? (
if (!costInfo) {
return <span className="credit-amount">PRICE</span>;
}
return (
<CreditAmount <CreditAmount
amount={costInfo.cost} amount={costInfo.cost}
isEstimate={isEstimate} isEstimate={!costInfo.includesData}
showFree showFree
showFullPrice={showFullPrice} showFullPrice={showFullPrice}
/> />
); ) : null;
} }
} }