mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Add padding to image model picker (#7494)
This commit is contained in:
parent
8e666078e4
commit
6ef9dbd873
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ export const ImageGenerationSettings = ({
|
|||
onChange={(e: any) => setSelectedModel(e.target.value)}
|
||||
className="w-full">
|
||||
{IMAGE_GENERATION_MODELS.map((model) => (
|
||||
<VSCodeOption key={model.value} value={model.value}>
|
||||
<VSCodeOption key={model.value} value={model.value} className="py-2 px-3">
|
||||
{model.label}
|
||||
</VSCodeOption>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue