Skip to content

Commit

Permalink
Merge pull request #289 from marsaldev/fix-light-theme-v2
Browse files Browse the repository at this point in the history
Fix light/dark theme selection (recaptcha v2)
  • Loading branch information
nenes25 authored May 2, 2024
2 parents b9a7cea + 76fedbe commit 16b9e0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ vendor
.github/config.php
.github/eicaptcha.zip
.github/build.sh
.idea
config.xml
config_*.xml
logs/*.log
4 changes: 2 additions & 2 deletions src/ConfigForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,12 +210,12 @@ public function renderForm()
'values' => [
[
'id' => 'cdark',
'value' => 0,
'value' => 1,
'label' => $this->l('Dark'),
],
[
'id' => 'clight',
'value' => 1,
'value' => 0,
'label' => $this->l('Light'),
],
],
Expand Down

0 comments on commit 16b9e0e

Please sign in to comment.