Skip to content

Commit

Permalink
Merge pull request #105 from LCOGT/feature/update-mosaic-fields
Browse files Browse the repository at this point in the history
AddSymbol method was not necessary.
  • Loading branch information
capetillo authored Oct 4, 2023
2 parents 10d1e63 + 7791e53 commit 3a0be1e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/projects/CreateProjectForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@
>
<b-input
v-model="exposures[n-1].angle"
:class="addSymbol(exposures[n-1].angle)"
class="angle-input"
size="is-small"
:disabled="!exposures[n-1].active"
type="number"
Expand Down Expand Up @@ -1197,11 +1197,6 @@ export default {
return 'degree-input'
} else if (zoom === 'Mosaic arcmin.') return 'arcmin-input'
return '' // return an empty string if there is no match
},
addSymbol (angle) {
if (angle) {
return 'angle-input'
}
}
},
computed: {
Expand Down

0 comments on commit 3a0be1e

Please sign in to comment.