Skip to content
Snippets Groups Projects
Commit 46d0a827 authored by João Rochate's avatar João Rochate Committed by Youri van Koppen
Browse files

Issue #3097522 by jrochate: Set maximum length of blank source's value to 1024...

Issue #3097522 by jrochate: Set maximum length of blank source's value to 1024 to decrease length limitation of Feeds Extensible Parser's custom source types.
parent a671c2ae
Branches
Tags
No related merge requests found
......@@ -42,6 +42,7 @@ class BlankSource extends CustomSourceBase {
'#title' => $this->t('Value'),
'#type' => 'textfield',
'#default_value' => $this->configuration['value'],
'#maxlength' => 1024,
];
$form['machine_name'] = [
......@@ -53,6 +54,7 @@ class BlankSource extends CustomSourceBase {
$form['value'] = [
'#type' => 'textfield',
'#default_value' => $this->configuration['value'],
'#maxlength' => 1024,
'#weight' => -2,
];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment