SpeciesFileGroup/taxonworks

View on GitHub
app/javascript/vue/components/Form/FormCollectingEvent/components/verbatim/Geolocation.vue

Summary

Maintainability
Test Coverage
<template>
  <div class="field label-above">
    <label>Geolocation uncertainty in meters</label>
    <input
      class="full_width"
      type="text"
      rows="3"
      v-model="collectingEvent.verbatim_geolocation_uncertainty"
      @change="() => { collectingEvent.isUnsaved = true }"
    />
  </div>
</template>

<script setup>
const collectingEvent = defineModel()
</script>