Skip to content

Commit

Permalink
Merge pull request #1799 from acquia/ACMS-3722
Browse files Browse the repository at this point in the history
ACMS-3722: Fix ignoreConfig button throws error on sitestudio form over tour page.
  • Loading branch information
vishalkhode1 authored Apr 16, 2024
2 parents fde4eda + f27ae6d commit e48bbed
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,13 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
$this->messenger()->addStatus('The configuration options have been saved.');
}

/**
* {@inheritdoc}
*/
public function ignoreConfig(array &$form, FormStateInterface $form_state) {
$this->setConfigurationState();
}

/**
* {@inheritdoc}
*/
Expand Down
10 changes: 6 additions & 4 deletions modules/acquia_cms_tour/css/acquia_cms_tour_dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,15 @@
.section-top .help-text {
width: 80%;
}
.section-top .starter-wizard,
.section-top .wizard {
right: 2.5rem;
.section-top .wizard,
.section-top .starter-wizard {
position: absolute;
}
.section-top .starter-wizard {
right: 2.5rem;
}
.section-top .starter-wizard + .wizard {
right: 11.5rem;
right: 12.5rem;
}

@media screen and (max-width: 767px) {
Expand Down

0 comments on commit e48bbed

Please sign in to comment.