remove random gms-location-type from combobox in user settings dialog

This commit is contained in:
clauspeterhuebner 2025-02-27 14:35:18 +01:00
parent c439cf63aa
commit abc8172832

View File

@ -25,7 +25,7 @@ const { t } = useI18n()
const store = useStore()
const { toastError, toastSuccess } = useAppToast()
const selectedOption = ref(store.state.gmsPublishLocation ?? 'GMS_LOCATION_TYPE_RANDOM')
const selectedOption = ref(store.state.gmsPublishLocation ?? 'GMS_LOCATION_TYPE_APPROXIMATE')
const dropdownOptions = [
{
label: t('settings.GMS.publish-location.exact'),
@ -35,10 +35,12 @@ const dropdownOptions = [
label: t('settings.GMS.publish-location.approximate'),
value: 'GMS_LOCATION_TYPE_APPROXIMATE',
},
/*
{
label: t('settings.GMS.publish-location.random'),
value: 'GMS_LOCATION_TYPE_RANDOM',
},
*/
]
const selectedOptionLabel = computed(() => {