Show pool amount in feed for all markets including resolved and without close date
This commit is contained in:
parent
dcd3bc759a
commit
bf2f289e29
|
@ -305,15 +305,13 @@ function FeedQuestion(props: { contract: Contract }) {
|
||||||
const { truePool } = contractMetrics(contract)
|
const { truePool } = contractMetrics(contract)
|
||||||
const isBinary = outcomeType === 'BINARY'
|
const isBinary = outcomeType === 'BINARY'
|
||||||
|
|
||||||
// Currently hidden on mobile; ideally we'd fit this in somewhere.
|
|
||||||
const closeMessage =
|
const closeMessage =
|
||||||
contract.isResolved || !contract.closeTime ? null : (
|
contract.isResolved || !contract.closeTime ? null : (
|
||||||
<span className="float-right hidden text-gray-400 sm:inline">
|
<>
|
||||||
{formatMoney(truePool)} pool
|
|
||||||
<span className="mx-2">•</span>
|
<span className="mx-2">•</span>
|
||||||
{contract.closeTime > Date.now() ? 'Closes' : 'Closed'}
|
{contract.closeTime > Date.now() ? 'Closes' : 'Closed'}
|
||||||
<Timestamp time={contract.closeTime || 0} />
|
<Timestamp time={contract.closeTime || 0} />
|
||||||
</span>
|
</>
|
||||||
)
|
)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -330,7 +328,11 @@ function FeedQuestion(props: { contract: Contract }) {
|
||||||
username={creatorUsername}
|
username={creatorUsername}
|
||||||
/>{' '}
|
/>{' '}
|
||||||
asked
|
asked
|
||||||
{closeMessage}
|
{/* Currently hidden on mobile; ideally we'd fit this in somewhere. */}
|
||||||
|
<span className="float-right hidden text-gray-400 sm:inline">
|
||||||
|
{formatMoney(truePool)} pool
|
||||||
|
{closeMessage}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<Col className="mb-4 items-start justify-between gap-2 sm:flex-row sm:gap-4">
|
<Col className="mb-4 items-start justify-between gap-2 sm:flex-row sm:gap-4">
|
||||||
<SiteLink
|
<SiteLink
|
||||||
|
|
Loading…
Reference in New Issue
Block a user