Skip to content
Snippets Groups Projects

Supply default value when CloudFlareTimeoutException happens

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -255,7 +255,7 @@ class SettingsForm extends FormBase implements ContainerInjectionInterface {
'#type' => 'textfield',
'#title' => $this->t('Current Zone'),
'#description' => $description,
'#default_value' => $zone_text,
'#default_value' => $zone_text ?? 'Zone Name Not Found',
'#disabled' => TRUE,
];
Loading