Skip to content
Snippets Groups Projects
Commit 674201f1 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2616196 by LOBsTerr, xjm, jordanpagewhite, balagan: Missing opening parentheses in UI text

parent 59902890
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -162,7 +162,7 @@ public function form(array $form, FormStateInterface $form_state) { ...@@ -162,7 +162,7 @@ public function form(array $form, FormStateInterface $form_state) {
'#type' => 'textfield', '#type' => 'textfield',
'#title' => $this->t('Sizes'), '#title' => $this->t('Sizes'),
'#default_value' => isset($image_style_mapping['image_mapping']['sizes']) ? $image_style_mapping['image_mapping']['sizes'] : '100vw', '#default_value' => isset($image_style_mapping['image_mapping']['sizes']) ? $image_style_mapping['image_mapping']['sizes'] : '100vw',
'#description' => $this->t('Enter the value for the sizes attribute: for example "(min-width:700px) 700px, 100vw)".'), '#description' => $this->t('Enter the value for the sizes attribute, for example: %example_sizes.', ['%example_sizes' => '(min-width:700px) 700px, 100vw']),
'#states' => array( '#states' => array(
'visible' => array( 'visible' => array(
':input[name="keyed_styles[' . $breakpoint_id . '][' . $multiplier . '][image_mapping_type]"]' => array('value' => 'sizes'), ':input[name="keyed_styles[' . $breakpoint_id . '][' . $multiplier . '][image_mapping_type]"]' => array('value' => 'sizes'),
......
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