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

Issue #2850546 by scott_euser: Empty value for no transitions when editing state

parent eb8b64df
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ public function form(array $form, FormStateInterface $form_state) {
$form['transitions'] = [
'#type' => 'table',
'#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) {
$links['edit'] = [
......
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