Issue #2850546 by scott_euser: Empty value for no transitions when editing state
parent
eb8b64df0f
commit
27509d09d5
|
@ -68,7 +68,7 @@ class WorkflowStateEditForm extends EntityForm {
|
||||||
$form['transitions'] = [
|
$form['transitions'] = [
|
||||||
'#type' => 'table',
|
'#type' => 'table',
|
||||||
'#header' => $header,
|
'#header' => $header,
|
||||||
'#empty' => $this->t('There are no states yet.'),
|
'#empty' => $this->t('There are no transitions to or from this state yet.'),
|
||||||
];
|
];
|
||||||
foreach ($state->getTransitions() as $transition) {
|
foreach ($state->getTransitions() as $transition) {
|
||||||
$links['edit'] = [
|
$links['edit'] = [
|
||||||
|
|
Loading…
Reference in New Issue