Skip to content

Commit

Permalink
Merge pull request #705 from eea/develop
Browse files Browse the repository at this point in the history
Refs #281391 - Friendly Captcha
  • Loading branch information
GhitaB authored Jan 13, 2025
2 parents 0f988c3 + 69a9f78 commit 974cc6d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [1.1.207](https://github.com/eea/volto-clms-theme/compare/1.1.206...1.1.207) - 13 January 2025
### [1.1.208](https://github.com/eea/volto-clms-theme/compare/1.1.207...1.1.208) - 13 January 2025

#### :hammer_and_wrench: Others

- Refs #281391 - Add support for Friendly Captcha. [GhitaB - [`9e58e6b`](https://github.com/eea/volto-clms-theme/commit/9e58e6b70c081b0733f43c25191ad1df2bdd0fcc)]
- Refs #281391 - Get rid of captcha solution visible as message. [GhitaB - [`d234693`](https://github.com/eea/volto-clms-theme/commit/d234693b767c407ce672216ead009e067837f96e)]
- Refs #281391 - Solve issue on edit + save captcha option, by updating volto-form-block. [GhitaB - [`aca6da4`](https://github.com/eea/volto-clms-theme/commit/aca6da470e7e14ad7230c16f03d576c10058c17d)]
### [1.1.207](https://github.com/eea/volto-clms-theme/compare/1.1.206...1.1.207) - 13 January 2025

### [1.1.206](https://github.com/eea/volto-clms-theme/compare/1.1.205...1.1.206) - 9 January 2025

### [1.1.205](https://github.com/eea/volto-clms-theme/compare/1.1.204...1.1.205) - 19 December 2024
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eeacms/volto-clms-theme",
"version": "1.1.207",
"version": "1.1.208",
"description": "volto-clms-theme: Volto theme for CLMS site",
"main": "src/index.js",
"author": "CodeSyntax for the European Environment Agency",
Expand Down Expand Up @@ -67,7 +67,7 @@
"validator": "13.7.0",
"volto-cookie-banner": "2.1.0",
"volto-dropdownmenu": "4.0.0",
"volto-form-block": "3.0.1"
"volto-form-block": "3.1.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const FriendlyCaptcha = (props) => {
const [message, setMessage] = useState('');

const doneCallback = (solution) => {
setMessage(solution);
// setMessage(solution);
captchaToken.current = solution;
};

Expand Down

0 comments on commit 974cc6d

Please sign in to comment.