Skip to content
Snippets Groups Projects
Commit a405d5f5 authored by Bram Goffings's avatar Bram Goffings
Browse files

Remove escaping in DsFieldTemplateBase

parent f22e8fe3
No related branches found
Tags 2.1.4
No related merge requests found
......@@ -8,7 +8,6 @@
namespace Drupal\ds\Plugin\DsFieldTemplate;
use Drupal\Component\Plugin\PluginBase as ComponentPluginBase;
use Drupal\Component\Utility\Html;
use Drupal\Core\Entity\EntityInterface;
use Drupal\ds\Ds;
......@@ -56,7 +55,7 @@ abstract class DsFieldTemplateBase extends ComponentPluginBase implements DsFiel
'#type' => 'textfield',
'#title' => t('Label'),
'#size' => '10',
'#default_value' => Html::escape($config['lb']),
'#default_value' =>$config['lb'],
);
$form['lb-col'] = array(
'#type' => 'checkbox',
......
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