Skip to content
Snippets Groups Projects

3023322 - Contextual Links Style Update

3 files
+ 14
14
Compare changes
  • Side-by-side
  • Inline
Files
3
  • 9076657d
    Issue #2540794 by Eli-T, cilefen, karishmaamin, cosmicdreams, yoroy:... · 9076657d
    Alex Pott authored
    Issue #2540794 by Eli-T, cilefen, karishmaamin, cosmicdreams, yoroy: Configuration synchronization UI does not distinguish between an empty staged configuration, and staged configuration that matches active
    
    (cherry picked from commit 7493e886)
@@ -213,7 +213,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
'#type' => 'table',
'#header' => [$this->t('Name'), $this->t('Operations')],
'#rows' => [],
'#empty' => $this->t('There are no configuration changes to import.'),
'#empty' => empty($source_list) ? $this->t('There is no staged configuration.') : $this->t('The staged configuration is identical to the active configuration.'),
];
$form['actions']['#access'] = FALSE;
return $form;
Loading