MovieScrapeDialog tweaks (#753)

* MovieScrapeDialog: use TextArea for Synopsis
* MovieScrapeDialog: add Date placeholder
This commit is contained in:
peolic 2020-08-23 06:14:16 +03:00 committed by GitHub
parent ffa1fbda7f
commit 165a0d4398
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)}