Skip to content

Commit

Permalink
Merge branch 'feature/owm-report-mirrored' of https://github.com/LCOG…
Browse files Browse the repository at this point in the history
…T/ptr_ui into feature/owm-report-mirrored
  • Loading branch information
LTDakin committed Oct 18, 2023
2 parents 3875afd + 82f07ca commit f2d98d9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/projects/CreateProjectForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,6 @@
style="width: 150px;"
>
<b-numberinput
:v-model="exposures[n-1].width"
:value="Number(exposures[n-1].width)"
:class="getSymbol(exposures[n-1].zoom)"
size="is-small"
Expand All @@ -378,14 +377,14 @@
:max="exposures[n-1].zoom === 'Mosaic arcmin.' ? maxWidthDegrees * degreesToArcminutes : maxWidthDegrees"
:step="exposures[n-1].zoom === 'Mosaic arcmin.' ? conditionalStep * 10 : conditionalStep"
min-step="0.001"
@input="val => exposures[n-1].width = val"
/>
</b-field>
<b-field
:label="n==1 ? 'Height' : ''"
style="width: 150px;"
>
<b-numberinput
:v-model="exposures[n-1].height"
:value="Number(exposures[n-1].height)"
:class="getSymbol(exposures[n-1].zoom)"
size="is-small"
Expand All @@ -395,14 +394,14 @@
:max="exposures[n-1].zoom === 'Mosaic arcmin.' ? maxHeightDegrees * degreesToArcminutes : maxHeightDegrees"
:step="exposures[n-1].zoom === 'Mosaic arcmin.' ? conditionalStep * 10 : conditionalStep"
min-step="0.001"
@input="val => exposures[n-1].height = val"
/>
</b-field>
<b-field
:label="n==1 ? 'Angle' : ''"
style="width: 150px;"
>
<b-numberinput
:v-model="exposures[n-1].angle"
:value="Number(exposures[n-1].angle)"
class="angle-input"
size="is-small"
Expand All @@ -412,6 +411,7 @@
:max="90.0"
:step="5"
min-step="0.001"
@input="val => exposures[n-1].angle = val"
/>
</b-field>
<div />
Expand Down Expand Up @@ -880,7 +880,6 @@ export default {
maxHeightDegrees: 4.5,
degreesToArcminutes: 60,
conditionalStep: 0.1,
keyDownTime: null,
site: this.sitecode,
warn: {
project_name: false,
Expand Down

0 comments on commit f2d98d9

Please sign in to comment.