Esphome number component shows in HA frontend not as expected

Hey!!! so I have this code in ESPHOME:

number:
  - platform: template
    name: "Tiempo Transcurrido"
    id: tiempo
    optimistic: true
    initial_value: 0
    min_value: 0
    max_value: 120
    step: 1
    on_value_range:
      above: 120
      then:
        - switch.turn_off: ha_power_button

  - platform: template
    name: "Tiempo de Secado"
    id: tiempo_secado
    optimistic: true
    initial_value: 120
    min_value: 10
    max_value: 120
    step: 10

  - platform: template
    name: "Humedad Deseada"
    id: hum_deseada
    optimistic: true
    initial_value: 50
    min_value: 10
    max_value: 80
    step: 5

  - platform: template
    name: "Temp Deseada"
    id: tem_deseada
    optimistic: true
    initial_value: 30
    min_value: 10
    max_value: 60
    step: 5

And it shows like this:

I do not care much how they show, but why the show differently?? That is what bugs me!
Thanks!!