Skip to content
Snippets Groups Projects

Issue #3405184, provide default value for password field

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -95,7 +95,7 @@ class FtpFetcherFeedForm extends ExternalPluginFormBase implements ContainerInje
$form['password'] = [
'#title' => $this->t('Password'),
'#type' => 'select',
'#default_value' => NULL,
'#default_value' => $config['password'] ?? NULL,
'#description' => $this->t('The FTP password provided by the Key module.'),
'#options' => $options,
];
Loading