Skip to content

Commit

Permalink
fix: allow more granular refine rate selection on profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Crypta-Eve authored and warlof committed Aug 28, 2021
1 parent ab8bc37 commit 5907741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/views/profile/view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class="form-horizontal" id="user-settings-form">
for="reprocessing_yield">{{ trans('web::seat.reprocessing_yield') }}</label>
<div class="col-md-6">
<div class="form-inline input-group">
<input type="number" min="0" max="1" step="0.05" name="reprocessing_yield" value="{{ setting('reprocessing_yield') ?: 0.80 }}" class="form-control" id="reprocessing_yield" />
<input type="number" min="0" max="1" step="0.0001" name="reprocessing_yield" value="{{ setting('reprocessing_yield') ?: 0.80 }}" class="form-control" id="reprocessing_yield" />
</div>
</div>
</div>
Expand Down

0 comments on commit 5907741

Please sign in to comment.