Skip to content

Commit

Permalink
ACMS-3722: Fix ignoreConfig button throws error on sitestudio form ov…
Browse files Browse the repository at this point in the history
…er tour page.
  • Loading branch information
apathak18 committed Apr 16, 2024
1 parent 67cbbf5 commit f27ae6d
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 f27ae6d

Please sign in to comment.