Commit cdc71f17 authored by Amacado's avatar Amacado Committed by Alex Roye
Browse files

Issue #3302050: Mapbox token exceeds character limit

parent 4ed4e014
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'),
    ];