mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 00:03:33 +00:00
Increase width of the manually search modal
This commit is contained in:
parent
bc40abac50
commit
963ce21d9b
1 changed files with 2 additions and 2 deletions
|
@ -220,12 +220,12 @@ function ManualSearchView<T extends SupportType>(props: Props<T>) {
|
|||
export const MovieSearchModal = withModal<Props<Item.Movie>>(
|
||||
ManualSearchView,
|
||||
"movie-manual-search",
|
||||
{ title: "Search Subtitles", size: "xl" }
|
||||
{ title: "Search Subtitles", size: "calc(100vw - 4rem)" }
|
||||
);
|
||||
export const EpisodeSearchModal = withModal<Props<Item.Episode>>(
|
||||
ManualSearchView,
|
||||
"episode-manual-search",
|
||||
{ title: "Search Subtitles", size: "xl" }
|
||||
{ title: "Search Subtitles", size: "calc(100vw - 4rem)" }
|
||||
);
|
||||
|
||||
const StateIcon: FunctionComponent<{ matches: string[]; dont: string[] }> = ({
|
||||
|
|
Loading…
Reference in a new issue