Skip to content

Commit

Permalink
got rid of addsymbol method (there was a typo in 'class' in the angle…
Browse files Browse the repository at this point in the history
… field
  • Loading branch information
Carolina Capetillo committed Oct 4, 2023
1 parent a3da20c commit 7791e53
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 7791e53

Please sign in to comment.