New Lovelace - glance card - action toggle doesn't toggle

I have a similar issue. I get this clue:

Your config is not supported by the UI editor:
Expected a value of type `{entity,name,icon} | entity-id` for `entities.3.tap_action` but received `{"action":"call-service","service":"cover.open_cover","service_data":{"entity_id":"cover.big_door"}}`.
Falling back to YAML editor.

on this glance card config:

type: glance
title: Doors
entities:
  - entity: binary_sensor.master_door
    icon: 'mdi:door'
    name: Master
  - entity: binary_sensor.bar_door
    icon: 'mdi:door'
    name: Bar
  - entity: binary_sensor.front_door
    icon: 'mdi:door'
    name: Front
  - entity: cover.big_door
    name: Garage Big
    tap_action:
      action: call-service
      service: cover.open_cover
      service_data:
        entity_id: cover.big_door
    hold_action:
      action: call-service
      service: cover.close_cover
      service_data:
        entity_id: cover.big_door
  - entity: cover.small_door
    name: Garage Small
    tap_action:
      action: call-service
      service: cover.open_cover
      service_data:
        entity_id: cover.big_door
    hold_action:
      action: call-service
      service: cover.close_cover
      service_data:
        entity_id: cover.big_door
  - entity: binary_sensor.garage_side_door
    icon: 'mdi:door'
    name: Garage Side
columns: 3