Skip to content

Commit

Permalink
Fix Max Merge label
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley committed Oct 3, 2023
1 parent 1dfc28d commit 1611f94
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default {
:disabled="merge"
>
</td>
<td style="width:90%">
<td style="width: 100%">
<input
v-model="value"
type="range"
Expand All @@ -62,23 +62,25 @@ export default {
/>
</div>
</td>
<td v-show="merge !== undefined">
<td
v-show="merge !== undefined"
style="min-width: 150px; text-align: right;"
>
<input
:id="'maxMerge'+label"
v-model="merge"
type="checkbox"
name="maxMergeCheck"
style="margin: 0px 5px 0px 10px"
>
</td>
<td v-show="merge !== undefined">
<label for="maxMergeCheck">Max Merge</label>
<label :for="'maxMerge'+label">Max Merge</label>
</td>
</tr>
</template>

<style scoped>
.dual-controls > * > * {
margin-right: 15px;
white-space: nowrap;
}
.dual-controls.tall {
height: 40px;
Expand Down

0 comments on commit 1611f94

Please sign in to comment.