Skip to content

Commit

Permalink
moved defocus field
Browse files Browse the repository at this point in the history
  • Loading branch information
capetillo committed Feb 21, 2024
1 parent 6b80bf6 commit 7de938c
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions src/components/projects/CreateProjectForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -704,8 +704,21 @@
<span class="button is-static">%</span>
</p>
</b-field>
<b-field label="Defocus (mags)">
<b-select
v-model="defocus"
:disabled="read_only"
>
<option
v-for="i in 7"
:key="i - 1"
:value="i - 1"
>
{{ i - 1 }}
</option>
</b-select>
</b-field>
</div>

<div style="height: 5px;" />
<b-field>
<b-checkbox
Expand Down Expand Up @@ -751,20 +764,6 @@
class="flex-row"
style="margin-top: 1em; gap: 3em;"
>
<b-field label="Defocus (mags)">
<b-select
v-model="defocus"
:disabled="read_only"
>
<option
v-for="i in 7"
:key="i - 1"
:value="i - 1"
>
{{ i - 1 }}
</option>
</b-select>
</b-field>
<div style="padding-top: 1em;">
<b-field>
<b-checkbox
Expand Down

0 comments on commit 7de938c

Please sign in to comment.