mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
fix wrong condition
This commit is contained in:
parent
eab0817eb9
commit
a853810b8a
@ -73,7 +73,7 @@ const gmsAllowed = store.state.gmsAllowed
|
||||
// console.log('gmsAllowed=', gmsAllowed)
|
||||
const gmsUserLocationExists = store.state.userLocation !== null
|
||||
// console.log('gmsUserLocationExists=', gmsUserLocationExists)
|
||||
const isUserSearchDisabled = computed(() => gmsUri.value !== null)
|
||||
const isUserSearchDisabled = computed(() => gmsUri.value === null)
|
||||
|
||||
const { onResult, result, loading, onError } = useQuery(authenticateGmsUserSearch, null, {
|
||||
fetchPolicy: 'network-only',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user