Skip to content

Commit

Permalink
Wrong config key for css
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoPino committed Oct 17, 2024
1 parent 16c25a0 commit c7245c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ public function blockSubmit($form, FormStateInterface $form_state) {
$this->configuration['views_exposed_sbf_copy_values_to_other_js'] = $form_state->getValue('views_exposed_sbf_copy_values_to_other_js',0);
$this->configuration['views_exposed_sbf_autosubmit_js'] = $form_state->getValue('views_exposed_sbf_autosubmit_js',0);
$this->configuration['views_exposed_sbf_override_css'] = $form_state->getValue('views_exposed_sbf_override_css',0);
$this->configuration['views_exposed_sbf_overriden_css'] = $form_state->getValue('views_exposed_sbf_override_css',0) ? $form_state->getValue('views_exposed_sbf_override_css','') : '';
$this->configuration['views_exposed_sbf_overriden_css'] = $form_state->getValue('views_exposed_sbf_override_css', 0) ? $form_state->getValue('views_exposed_sbf_overriden_css','') : '';
$form_state->unsetValue('views_label_checkbox');
$form_state->unsetValue('views_exposed_sbf_rename_submit');
}
Expand Down

0 comments on commit c7245c7

Please sign in to comment.