Show close time in feed
This commit is contained in:
parent
f75fbfb4c5
commit
b963cc2fe2
|
@ -235,6 +235,15 @@ function FeedQuestion(props: { contract: Contract }) {
|
||||||
description = description.slice(0, i)
|
description = description.slice(0, i)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Currently hidden on mobile; ideally we'd fit this in somewhere.
|
||||||
|
const closeMessage =
|
||||||
|
contract.isResolved || !contract.closeTime ? null : (
|
||||||
|
<span className="float-right text-gray-400 hidden sm:inline">
|
||||||
|
{contract.closeTime > Date.now() ? 'Closes' : 'Closed'}
|
||||||
|
<Timestamp time={contract.closeTime || 0} />
|
||||||
|
</span>
|
||||||
|
)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div>
|
<div>
|
||||||
|
@ -252,8 +261,9 @@ function FeedQuestion(props: { contract: Contract }) {
|
||||||
username={creatorUsername}
|
username={creatorUsername}
|
||||||
/>{' '}
|
/>{' '}
|
||||||
asked <Timestamp time={createdTime} />
|
asked <Timestamp time={createdTime} />
|
||||||
|
{closeMessage}
|
||||||
</div>
|
</div>
|
||||||
<Col className="items-start sm:flex-row justify-between gap-2 sm:gap-4 mb-4 mr-2">
|
<Col className="items-start sm:flex-row justify-between gap-2 sm:gap-4 mb-4">
|
||||||
<SiteLink
|
<SiteLink
|
||||||
href={contractPath(contract)}
|
href={contractPath(contract)}
|
||||||
className="text-lg sm:text-xl text-indigo-700"
|
className="text-lg sm:text-xl text-indigo-700"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user