mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
fix(post-form): restore native board selector appearance
Exclude the board dropdown from post-form field chrome so it keeps the browser default select styling, matching flag selector behavior.
This commit is contained in:
@@ -432,7 +432,12 @@ const PostFormFields = ({
|
||||
<tr>
|
||||
<td>{t('board')}</td>
|
||||
<td>
|
||||
<select aria-label={t('board')} onChange={(e) => setPublishPostOptions({ communityAddress: e.target.value })} value={communityAddress}>
|
||||
<select
|
||||
aria-label={t('board')}
|
||||
className={styles.boardSelector}
|
||||
onChange={(e) => setPublishPostOptions({ communityAddress: e.target.value })}
|
||||
value={communityAddress}
|
||||
>
|
||||
<option value=''>{t('choose_one')}</option>
|
||||
{isInAllView &&
|
||||
directories.map((community) =>
|
||||
|
||||
Reference in New Issue
Block a user