mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-03 13:35:18 +00:00
Fix some minor issues in the Notification modal
This commit is contained in:
parent
42ae3af4a2
commit
53951a5fad
1 changed files with 5 additions and 0 deletions
|
@ -73,9 +73,14 @@ const NotificationForm: FunctionComponent<Props> = ({
|
|||
>
|
||||
<Stack>
|
||||
<Selector
|
||||
searchable
|
||||
disabled={payload !== null}
|
||||
{...options}
|
||||
{...form.getInputProps("selection")}
|
||||
// We also to update the url, so override the default event from getInputProps
|
||||
onChange={(value) => {
|
||||
form.setValues({ selection: value, url: value?.url ?? undefined });
|
||||
}}
|
||||
></Selector>
|
||||
<div hidden={form.values.selection === null}>
|
||||
<Textarea
|
||||
|
|
Loading…
Reference in a new issue