Skip to content

Commit

Permalink
fix(MeasurementToolDetails): avoid line wrapping of Axis: Sagittal
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulHax committed Sep 12, 2023
1 parent 693f02d commit 673e542
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/MeasurementRulerDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const toolStore = useRulerStore();

<template>
<v-row>
<v-col cols="3">Slice: {{ tool.slice + 1 }}</v-col>
<v-col cols="3">Axis: {{ tool.axis }}</v-col>
<v-col cols="4">Slice: {{ tool.slice + 1 }}</v-col>
<v-col cols="4">Axis: {{ tool.axis }}</v-col>
<v-col>
Length:
<span class="value">
Expand Down
4 changes: 2 additions & 2 deletions src/components/MeasurementToolDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defineProps<{

<template>
<v-row>
<v-col cols="3">Slice: {{ tool.slice + 1 }}</v-col>
<v-col cols="3">Axis: {{ tool.axis }}</v-col>
<v-col cols="4">Slice: {{ tool.slice + 1 }}</v-col>
<v-col cols="4">Axis: {{ tool.axis }}</v-col>
</v-row>
</template>

0 comments on commit 673e542

Please sign in to comment.