add
This commit is contained in:
parent
6dd22fb600
commit
4dfea8171c
|
@ -42,7 +42,9 @@ export default function PublicOrNotSelector({
|
|||
<Select
|
||||
value={value}
|
||||
onChange={handleAntdChange}
|
||||
style={{ width: "100%" }}>
|
||||
style={{
|
||||
width: 150,
|
||||
}}>
|
||||
{options.map((option) => (
|
||||
<Select.Option
|
||||
key={String(option.value)}
|
||||
|
@ -57,7 +59,7 @@ export default function PublicOrNotSelector({
|
|||
<select
|
||||
value={String(value)}
|
||||
onChange={handleNativeChange}
|
||||
style={{ width: "100%", height: "32px", borderRadius: "2px" }}>
|
||||
style={{ width: 150, height: "32px", borderRadius: "2px" }}>
|
||||
{options.map((option) => (
|
||||
<option
|
||||
key={String(option.value)}
|
||||
|
|
Loading…
Reference in New Issue