Stop a return/enter character typing in a channel?

Using the harmony hub and trying to map the number keys. Kind of did that, but everytime I hit one it’s like it has an Enter/OK button hit and can’t enter more than one number before it switches.

So for my testing I have a script of:

channel_1:
  alias: 'TV - Channel 1'
  sequence:
    - service: harmony.change_channel
      data_template:
        entity_id: remote.familyroom_hub
        channel: 1

In lovelace I have

type: entity-button
name: 1
tap_action:
  action: call-service
  service: script.channel_1

Also tried this and same deal:

ch0:
  alias: 'Channel 0'
  icon: 'mdi:numeric-1-box-outline'
  sequence:
    - service: remote.send_command
      data:
        entity_id: remote.familyroom_hub
        command:
          - 1
        device: "Microsoft Xbox 360"

with this lovelace setting:

name: 1
icon: 'mdi:numeric-1-box-outline'
tap_action:
  action: call-service
  service: script.ch0
type: entity-button

Didn’t see anything. When I looked in the logs do see errors about the script is already running so not sure the right way to map Harmony device controls to remote buttons. I have created switches and can control other things like on and off for Activities but this doesn’t seem like an On/Off item.

Any thoughts?