update
This commit is contained in:
@@ -51,6 +51,13 @@ export function SettingsFieldRow({ setting, onChange }: SettingsFieldRowProps) {
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
) : type === 'textarea' ? (
|
||||
<textarea
|
||||
value={setting.value}
|
||||
rows={3}
|
||||
className="min-h-[88px] w-full min-w-[280px] resize-y rounded-xl border border-[#e4e7ec] bg-white px-3 py-2 text-sm outline-none focus:border-[#98a2b3] md:w-[360px]"
|
||||
onChange={(event) => onChange(event.target.value)}
|
||||
/>
|
||||
) : (
|
||||
<>
|
||||
<Input
|
||||
|
||||
Reference in New Issue
Block a user