Small fix for the Y-Max/Y-Min inputs on Axes (#7811)

This commit is contained in:
Denis Doria 2017-03-13 09:32:36 +01:00 committed by Torkel Ödegaard
parent 77921c4dcd
commit 891df21969

View File

@ -20,13 +20,13 @@
</div>
<div class="gf-form-inline">
<div class="gf-form max-width-10">
<div class="gf-form">
<label class="gf-form-label width-5">Y-Min</label>
<input type="text" class="gf-form-input" placeholder="auto" empty-to-null ng-model="yaxis.min" ng-change="ctrl.render()" ng-model-onblur>
<input type="text" class="gf-form-input width-5" placeholder="auto" empty-to-null ng-model="yaxis.min" ng-change="ctrl.render()" ng-model-onblur>
</div>
<div class="gf-form max-width-10">
<div class="gf-form">
<label class="gf-form-label width-5">Y-Max</label>
<input type="text" class="gf-form-input" placeholder="auto" empty-to-null ng-model="yaxis.max" ng-change="ctrl.render()" ng-model-onblur>
<input type="text" class="gf-form-input width-5" placeholder="auto" empty-to-null ng-model="yaxis.max" ng-change="ctrl.render()" ng-model-onblur>
</div>
</div>