Lovelace - Unable to trigger scenes to activate

With the new Lovelace config template I can’t seem to find a way to trigger scenes to be activated. Below is the config I have. When clicking on it nothing happens, but when I long press I can use the normal Activate to enable it. How can I get it to work with a normal click?

  - type: glance
    title: Livingroom Lights                                                                                                             
    show_state: false                                                                                                                    
    entities:                                                                                                                            
      - entity: switch.lights_livingroom                                                                                                 
        name: Power                                                                                                                      
        icon: mdi:power                                                                                                                  
        tap_action:                                                                                                                      
          action: toggle                                                                                                                 
        hold_action:                                                                                                                     
          action: more-info                                                                                                              
      - entity: scene.normal_lights                                                                                                      
        name: Normal
        icon: mdi:lightbulb-outline                                                                                                      
        tap_action:                                                                                                                      
          action: call-service                                                                                                           
          service: scene.normal_lights                                                                                                   
        hold_action:                                                                                                                     
          action: more-info                                                                                                              
      - entity: scene.bright_lights                                                                                                      
        name: Bright                                                                                                                     
        icon: mdi:lightbulb-on-outline                                                                                                   
        tap_action:                                                                                                                      
          action: call-service                                                                                                           
          service: scene.bright_lights                                                                                                   
        hold_action:                                                                                                                     
          action: more-info                                                                                                              
      - entity: scene.movies_lights                                                                                                      
        name: Movies                                                                                                                     
        icon: mdi:movie                                                                                                                  
        tap_action:                                                                                                                      
          action: call-service                                                                                                           
          service: scene.turn_on                                                                                                         
          service-data: scene.movie_lights                                                                                               
        hold_action:                                                                                                                     
          action: more-info

Here is what working for me:

  - type: state-icon
    tap_action: 
      action: call-service
      service: light.turn_off
      service_data:
      entity_id: group.all_actual_switches
    title: Switches Off
    entity: switch.all_switches

That doesn’t seem to work well for scenes. My lights go up and down before going to the correct level. Only when using the Activate button on the info-card it goes smoothly.

Update: OK it works now. I had “entity-id” instead of “entity_id”, which solved the problem.

So now it reads like:

      - entity: scene.normal_lights
        name: Normal
        icon: mdi:lightbulb-outline
        tap_action:
          action: call-service
          service: scene.turn_on
          service_data:
            entity_id: scene.normal_lights
        hold_action:
          action: more-info

trying to use this on a picture glance card with no luck.
Any suggestions? (switches and lights work just not my scenes)