admin unlisted toggle
This commit is contained in:
parent
133e7a9c3f
commit
d63dd12056
|
@ -170,6 +170,21 @@ export function ContractInfoDialog(props: { contract: Contract; bets: Bet[] }) {
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
)}
|
)}
|
||||||
|
{isAdmin && (
|
||||||
|
<tr>
|
||||||
|
<td>[ADMIN] Unlisted</td>
|
||||||
|
<td>
|
||||||
|
<ShortToggle
|
||||||
|
enabled={contract.visibility === 'unlisted'}
|
||||||
|
setEnabled={(b) =>
|
||||||
|
updateContract(id, {
|
||||||
|
visibility: b ? 'unlisted' : 'public',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
)}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user