Allocation Amount scroll increment
The scroll increment for the Allocation amount is $0.01 (one cent)! $1000 would be more reasonable. But this feature should probably best be removed.
Change to $1.00
@jlblcc the direction that I am taking on this one will be to remove the step feature completely, but there are some lingering effects that I need to clarify before I move forward.
- Where does the little selector logic come from? Is it part of Ember input helper?
- Removed "step" property from /app/pods/components/object/md-allocation/template.hbs
{{input/md-input
class="col-sm-5 col-xxl-3"
model=this
type="number"
valuePath="amount"
label="Amount"
placeholder="Enter amount for the allocation."
profilePath=(concat profilePath ".amount")
showValidations=true
}}
@jlblcc also does this label for amount seem a bit repetitive or does it serve another purpose that I am not seeing?

The blue Amount is the label for the input group. Usually it has a different label then the inputs.
Depending on the browser, the field still going to show the stepper arrows because the input is a "number". If you remove the step attribute, it'll just default to 1. I'm not too concerned with it, users will ignore it.