switch gmsPublishLocation to GMS_LOCATION_TYPE_APPROXIMATE

This commit is contained in:
clauspeterhuebner 2025-03-27 23:51:18 +01:00
parent 6997270e82
commit 9ab7516d38

View File

@ -25,7 +25,11 @@ const { t } = useI18n()
const store = useStore()
const { toastError, toastSuccess } = useAppToast()
const selectedOption = ref(store.state.gmsPublishLocation ?? 'GMS_LOCATION_TYPE_APPROXIMATE')
const selectedOption = ref(
store.state.gmsPublishLocation === 'GMS_LOCATION_TYPE_RANDOM' ?
'GMS_LOCATION_TYPE_APPROXIMATE' :
store.state.gmsPublishLocation
)
const dropdownOptions = [
{
label: t('settings.GMS.publish-location.exact'),