Skip to content

Commit

Permalink
Merge pull request #150 from LCOGT/fix/min-exposure
Browse files Browse the repository at this point in the history
Fix/min exposure
  • Loading branch information
capetillo authored Mar 25, 2024
2 parents 2c8fc65 + d142d50 commit 8e87949
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/components/projects/CreateProjectForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -322,12 +322,10 @@
size="is-small"
:disabled="!exposures[n-1].active || read_only"
type="number"
min="0"
min="0.000001"
max="100000"
step="any"
/>
<p class="control">
<span class="button is-static is-small">s</span>
</p>
</b-field>
<b-field
:label="n==1 ? 'Filter' : ''"
Expand Down Expand Up @@ -1090,7 +1088,6 @@ export default {
return index === indexToMatch ? { ...obj, [key]: val } : obj
})
},
clearProjectForm () {
this.modifying_existing_project = false
this.cloning_existing_project = false
Expand Down

0 comments on commit 8e87949

Please sign in to comment.