mirror of
https://github.com/stashapp/stash.git
synced 2026-01-08 16:49:21 +01:00
MovieScrapeDialog tweaks (#753)
* MovieScrapeDialog: use TextArea for Synopsis * MovieScrapeDialog: add Date placeholder
This commit is contained in:
parent
ffa1fbda7f
commit
165a0d4398
1 changed files with 3 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ import {
|
|||
ScrapedInputGroupRow,
|
||||
ScrapedImageRow,
|
||||
ScrapeDialogRow,
|
||||
ScrapedTextAreaRow,
|
||||
} from "src/components/Shared/ScrapeDialog";
|
||||
import { StudioSelect } from "src/components/Shared";
|
||||
import { DurationUtils } from "src/utils";
|
||||
|
|
@ -157,6 +158,7 @@ export const MovieScrapeDialog: React.FC<IMovieScrapeDialogProps> = (
|
|||
/>
|
||||
<ScrapedInputGroupRow
|
||||
title="Date"
|
||||
placeholder="YYYY-MM-DD"
|
||||
result={date}
|
||||
onChange={(value) => setDate(value)}
|
||||
/>
|
||||
|
|
@ -165,7 +167,7 @@ export const MovieScrapeDialog: React.FC<IMovieScrapeDialogProps> = (
|
|||
result={director}
|
||||
onChange={(value) => setDirector(value)}
|
||||
/>
|
||||
<ScrapedInputGroupRow
|
||||
<ScrapedTextAreaRow
|
||||
title="Synopsis"
|
||||
result={synopsis}
|
||||
onChange={(value) => setSynopsis(value)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue