Fix some minor issues in the Notification modal

This commit is contained in:
LASER-Yi 2023-08-20 22:08:30 +08:00
parent 42ae3af4a2
commit 53951a5fad
No known key found for this signature in database
1 changed files with 5 additions and 0 deletions

View File

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