monitoring: Fix missing return argument in the backend configuration form
This commit is contained in:
parent
24b2369adb
commit
e72361c2cb
|
@ -147,7 +147,7 @@ class BackendConfigForm extends ConfigForm
|
|||
}
|
||||
} catch (InvalidArgumentException $e) {
|
||||
Notification::error($e->getMessage());
|
||||
return;
|
||||
return null;
|
||||
}
|
||||
|
||||
if ($this->save()) {
|
||||
|
|
Loading…
Reference in New Issue