Input_number

Why does input_number display numbers with tenths ("…,0") on lovelace? The step = 10;

input_number:
  u_s_air_quality_critical_level:
    name: Крит уровень
    min: 10
    max: 100
    step: 10
    unit_of_measurement: AQI

1

Because the input number backend is a floating point type whether you use integer steps or not.

Just use custom:slider-entity-row instead of entities card, it displays values properly.

Excellent solution!