mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
add labels to moderation modal
This commit is contained in:
@@ -152,9 +152,11 @@ const ModerationModal = ({ isOpen, closeModal }) => {
|
|||||||
</div>
|
</div>
|
||||||
<ul className="settings-cat">
|
<ul className="settings-cat">
|
||||||
<li className="settings-cat-lbl">
|
<li className="settings-cat-lbl">
|
||||||
|
<label>
|
||||||
<input type="checkbox" style={{marginRight: "10px"}}
|
<input type="checkbox" style={{marginRight: "10px"}}
|
||||||
checked={pin} onChange={() => setPin(!pin)} />
|
checked={pin} onChange={() => setPin(!pin)} />
|
||||||
Pin thread
|
Pin thread
|
||||||
|
</label>
|
||||||
</li>
|
</li>
|
||||||
<li className="settings-tip">
|
<li className="settings-tip">
|
||||||
Pin the thread to make it a sticky, showed at the top of the board even as new posts are submitted.
|
Pin the thread to make it a sticky, showed at the top of the board even as new posts are submitted.
|
||||||
@@ -162,9 +164,11 @@ const ModerationModal = ({ isOpen, closeModal }) => {
|
|||||||
</ul>
|
</ul>
|
||||||
<ul className="settings-cat">
|
<ul className="settings-cat">
|
||||||
<li className="settings-cat-lbl">
|
<li className="settings-cat-lbl">
|
||||||
|
<label>
|
||||||
<input type="checkbox" style={{marginRight: "10px"}}
|
<input type="checkbox" style={{marginRight: "10px"}}
|
||||||
checked={deleteThread} onChange={() => setDeleteThread(!deleteThread)} />
|
checked={deleteThread} onChange={() => setDeleteThread(!deleteThread)} />
|
||||||
Delete thread
|
Delete thread
|
||||||
|
</label>
|
||||||
</li>
|
</li>
|
||||||
<li className="settings-tip">
|
<li className="settings-tip">
|
||||||
The post will no longer visible to other users, but the person who posted it can still see it in their own account.
|
The post will no longer visible to other users, but the person who posted it can still see it in their own account.
|
||||||
@@ -172,9 +176,11 @@ const ModerationModal = ({ isOpen, closeModal }) => {
|
|||||||
</ul>
|
</ul>
|
||||||
<ul className="settings-cat">
|
<ul className="settings-cat">
|
||||||
<li className="settings-cat-lbl">
|
<li className="settings-cat-lbl">
|
||||||
|
<label>
|
||||||
<input type="checkbox" style={{marginRight: "10px"}}
|
<input type="checkbox" style={{marginRight: "10px"}}
|
||||||
checked={close} onChange={() => setClose(!close)} />
|
checked={close} onChange={() => setClose(!close)} />
|
||||||
Close thread
|
Close thread
|
||||||
|
</label>
|
||||||
</li>
|
</li>
|
||||||
<li className="settings-tip">
|
<li className="settings-tip">
|
||||||
Closing a thread allows users to still see the content, but they cannot add any new replies to it.
|
Closing a thread allows users to still see the content, but they cannot add any new replies to it.
|
||||||
|
|||||||
Reference in New Issue
Block a user