Skip to content
Snippets Groups Projects
Commit 7da7c276 authored by Aaron Bauman's avatar Aaron Bauman
Browse files

Fixes fatal error on salesforce logger page

parent e3a806fe
No related branches found
No related tags found
No related merge requests found
Pipeline #179609 passed with warnings
......@@ -59,7 +59,7 @@ class SettingsForm extends ConfigFormBase {
$form['log_push_params_sanitized_fields'] = [
'#title' => $this->t('Fields that must not be shown in logs'),
'#type' => 'textarea',
'#default_value' => implode("\r\n", $config->get('log_push_params_sanitized_fields') ?? []),
'#default_value' => implode("\r\n", $config->get('log_push_params_sanitized_fields') ? $config->get('log_push_params_sanitized_fields') : []),
];
$form['log_push_success'] = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment