Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Mario Buikhuizen <[email protected]>
  • Loading branch information
kecnry and mariobuikhuizen committed Apr 4, 2022
1 parent 4a79794 commit bc67c56
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions glue_jupyter/widgets/axes_limits.vue
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
<template>
<div>
<v-row>
<v-col cols=6>
<v-col cols="6">
<glue-float-field label="xmin" :value.sync="glue_state.x_min" />
</v-col cols=6>
<v-col>
</v-col>
<v-col cols="6">
<glue-float-field label="xmax" :value.sync="glue_state.x_max" />
</v-col>
</v-row>
<v-row>
<v-col cols=6>
<v-col cols="6">
<glue-float-field label="ymin" :value.sync="glue_state.y_min" />
</v-col>
<v-col cols=6>
<v-col cols="6">
<glue-float-field label="ymax" :value.sync="glue_state.y_max" />
</v-col>
</v-row>
</div>
</template>

0 comments on commit bc67c56

Please sign in to comment.