TestData: allow negative values for random_walk parameters (#21627)

This commit is contained in:
Ryan McKinley
2020-01-20 10:50:42 -08:00
committed by GitHub
parent 2021a2df74
commit 5f14d62c0d
2 changed files with 7 additions and 7 deletions
@@ -65,7 +65,6 @@
class="gf-form-input width-6"
placeholder="auto"
ng-model="ctrl.target.startValue"
min="1"
step="1"
ng-change="ctrl.refresh()" />
</div>
@@ -95,7 +94,6 @@
class="gf-form-input width-6"
placeholder="none"
ng-model="ctrl.target.min"
min="0"
step="0.1"
ng-change="ctrl.refresh()" />
</div>
@@ -105,7 +103,6 @@
class="gf-form-input width-6"
placeholder="none"
ng-model="ctrl.target.max"
min="0"
step="0.1"
ng-change="ctrl.refresh()" />
</div>