mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
fix(notifications): update and list password (#1951)
This commit is contained in:
parent
3f8bc0140c
commit
9eff694a5f
3 changed files with 44 additions and 37 deletions
|
@ -575,6 +575,7 @@ interface InitialValues {
|
|||
host?: string;
|
||||
events: NotificationEvent[];
|
||||
username?: string
|
||||
password?: string
|
||||
}
|
||||
|
||||
export function NotificationUpdateForm({ isOpen, toggle, data: notification }: UpdateFormProps<ServiceNotification>) {
|
||||
|
@ -625,7 +626,8 @@ export function NotificationUpdateForm({ isOpen, toggle, data: notification }: U
|
|||
topic: notification.topic,
|
||||
host: notification.host,
|
||||
events: notification.events || [],
|
||||
username: notification.username
|
||||
username: notification.username,
|
||||
password: notification.password
|
||||
};
|
||||
|
||||
return (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue