mirror of
https://github.com/stashapp/stash.git
synced 2026-05-01 05:59:25 -05:00
MovieScrapeDialog tweaks (#753)
* MovieScrapeDialog: use TextArea for Synopsis * MovieScrapeDialog: add Date placeholder
This commit is contained in:
@@ -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)}
|
||||
|
||||
Reference in New Issue
Block a user