Skip to content

Commit

Permalink
captcha fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zirreal committed Nov 16, 2023
1 parent 37985a0 commit ba118b7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"fs-extra": "^10.1.0",
"gridsome": "^0.7.23",
"gridsome-plugin-flexsearch": "^0.1.20",
"gridsome-plugin-google-sheets-post": "^3.0.5",
"gridsome-plugin-google-sheets-post": "^3.0.6",
"gridsome-plugin-gtm": "^0.1.1",
"gridsome-plugin-matomo": "^0.1.0",
"gridsome-plugin-remark-asciinema": "0.0.2",
Expand Down
3 changes: 2 additions & 1 deletion src/components/RoboWikiFeedbackForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</span>
</div>

<gsp-form v-if="result !== 'success' && $store.state.currentReaction === text" :gscriptID="gscript" class="robo-wiki-feedback-form__form" :class="result" :captchaStyle="captchaStyle">
<gsp-form v-if="result !== 'success' && $store.state.currentReaction === text" :gscriptID="gscript" class="robo-wiki-feedback-form__form" :class="result" :siteKey="siteKey">

<div>

Expand Down Expand Up @@ -79,6 +79,7 @@ export default {
return {
gscript: process.env.GRIDSOME_GSCRIPTID,
siteKey: process.env.GRIDSOME_CAPTCHAID,
email: '',
result: this.$response,
Expand Down

0 comments on commit ba118b7

Please sign in to comment.