Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
65640f1
fix(captcha): patch validated on desktop mode
JulienChampagnol May 2, 2025
e74471d
Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWe…
JulienChampagnol May 2, 2025
47acc65
@vitest/coverage-v8 3.0.8
JulienChampagnol May 2, 2025
fcbe878
Apply prepare changes
JulienChampagnol May 2, 2025
5e520dd
test cat package-lock.json
JulienChampagnol May 2, 2025
9680f8c
Merge branch 'fix/captcha_on_desktop' of https://github.com/Geode-sol…
JulienChampagnol May 2, 2025
d55a0c8
remove cat
JulienChampagnol May 2, 2025
f93b44e
test
JulienChampagnol May 2, 2025
2f78ff5
test
JulienChampagnol May 2, 2025
0a03c21
test
JulienChampagnol May 2, 2025
822d140
revert
JulienChampagnol May 2, 2025
8eec024
Apply prepare changes
JulienChampagnol May 2, 2025
17b5360
test
JulienChampagnol May 2, 2025
7fe6c8e
Merge branch 'fix/captcha_on_desktop' of https://github.com/Geode-sol…
JulienChampagnol May 2, 2025
eea7064
go
JulienChampagnol May 2, 2025
8d2f8db
update schemas
JulienChampagnol May 2, 2025
0cf1e9c
Apply prepare changes
JulienChampagnol May 2, 2025
c25291c
test vitest 3.1.1
JulienChampagnol May 3, 2025
d830c72
Merge branch 'fix/captcha_on_desktop' of https://github.com/Geode-sol…
JulienChampagnol May 3, 2025
e5c5e2d
test remove vitest coverage
JulienChampagnol May 3, 2025
55120df
Apply prepare changes
JulienChampagnol May 3, 2025
91f1bf4
test --save-exact
JulienChampagnol May 3, 2025
0816720
Merge branch 'fix/captcha_on_desktop' of https://github.com/Geode-sol…
JulienChampagnol May 3, 2025
cd02eb5
test wrapper.emitted()
JulienChampagnol May 5, 2025
40d5202
test
JulienChampagnol May 5, 2025
1d4dd15
test 2
JulienChampagnol May 5, 2025
0ef2ebe
test log
JulienChampagnol May 5, 2025
2bdf7a5
log in useFetch
JulienChampagnol May 5, 2025
04a2f86
test onRequest
JulienChampagnol May 5, 2025
d3631c0
test npm ci
JulienChampagnol May 5, 2025
dc45bcf
double flushPromises
JulienChampagnol May 5, 2025
a0c041e
Apply prepare changes
JulienChampagnol May 5, 2025
ac9ba3e
rename eslint config file
JulienChampagnol May 5, 2025
4cae0fd
Merge branch 'fix/captcha_on_desktop' of https://github.com/Geode-sol…
JulienChampagnol May 5, 2025
eb14fa4
Apply prepare changes
JulienChampagnol May 5, 2025
942cbc6
eslint root false
JulienChampagnol May 5, 2025
83cb61e
Merge branch 'fix/captcha_on_desktop' of https://github.com/Geode-sol…
JulienChampagnol May 5, 2025
58a56f5
remove root
JulienChampagnol May 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Recaptcha.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
onMounted(() => {
if (process.client) {
const config = useRuntimeConfig()
if (config.public.NODE_ENV !== "production") {
if (config.public.NODE_ENV !== "production" || !infra_store.is_cloud) {
infra_store.$patch({ is_captcha_validated: true })
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@nuxt/test-utils": "^3.15.1",
"@pinia/testing": "^0.1.7",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.0.8",
"@vitest/coverage-v8": "3.0.8",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
Expand Down
Loading