Commit 8bc65b45 authored by Amacado's avatar Amacado Committed by Ahmed Raza
Browse files

Issue #3302050: Mapbox token exceeds character limit

parent 102950b4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -65,8 +65,8 @@ class ConfigForm extends ConfigFormBase {
    $form['access_token'] = [
      '#type' => 'textfield',
      '#title' => $this->stringTranslation->translate('Access Token'),
      '#maxlength' => 96,
      '#size' => 86,
      '#maxlength' => 98,
      '#size' => 98,
      '#required' => TRUE,
      '#default_value' => $config->get('access_token'),
    ];