y-range max value increased by factor 10
This allows us to specify the range below 10 seconds with milli second precision.
This commit is contained in:
@@ -127,6 +127,9 @@ textarea {
|
|||||||
.number-input-1k {
|
.number-input-1k {
|
||||||
width: 3em;
|
width: 3em;
|
||||||
}
|
}
|
||||||
|
.number-input-10k {
|
||||||
|
width: 4em;
|
||||||
|
}
|
||||||
|
|
||||||
.input_date {
|
.input_date {
|
||||||
max-width: 10em;
|
max-width: 10em;
|
||||||
|
|||||||
@@ -700,22 +700,24 @@ Vue.component('search-bar', {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="group">
|
<div class="group">
|
||||||
<label for="y-max-value">Y-Range</label>
|
<label for="y-range-min">Y-Range:</label>
|
||||||
|
<label for="y-range-min" v-show="searchBar.yRange.unit != 'AUTOMATIC'">From:</label>
|
||||||
<input
|
<input
|
||||||
v-show="searchBar.yRange.unit != 'AUTOMATIC'"
|
v-show="searchBar.yRange.unit != 'AUTOMATIC'"
|
||||||
type="number"
|
type="number"
|
||||||
id="y-range-min"
|
id="y-range-min"
|
||||||
class="number-input-1k"
|
class="number-input-10k"
|
||||||
min="0"
|
min="0"
|
||||||
max="999"
|
max="9999"
|
||||||
v-model="searchBar.yRange.min"/>
|
v-model="searchBar.yRange.min"/>
|
||||||
|
<label for="y-range-max" v-show="searchBar.yRange.unit != 'AUTOMATIC'">To:</label>
|
||||||
<input
|
<input
|
||||||
v-show="searchBar.yRange.unit != 'AUTOMATIC'"
|
v-show="searchBar.yRange.unit != 'AUTOMATIC'"
|
||||||
type="number"
|
type="number"
|
||||||
id="y-range-max"
|
id="y-range-max"
|
||||||
class="number-input-1k"
|
class="number-input-10k"
|
||||||
min="0"
|
min="0"
|
||||||
max="999"
|
max="9999"
|
||||||
v-model="searchBar.yRange.max"/>
|
v-model="searchBar.yRange.max"/>
|
||||||
<select id="y-max-unit" v-model="searchBar.yRange.unit">
|
<select id="y-max-unit" v-model="searchBar.yRange.unit">
|
||||||
<option value="AUTOMATIC" title="adjust automatically">automatic</option>
|
<option value="AUTOMATIC" title="adjust automatically">automatic</option>
|
||||||
|
|||||||
Reference in New Issue
Block a user