Custom Button Entity Row wont turn on Scene

clicking the icon does nothing, I know I’m missing something but cant figure it out

            - type: custom:button-entity-row
              buttons:
                - entity: scene.salonday
                  icon: mdi:weather-sunny
                  name: Daylight
                  state_styles:
                    "off":
                      color: gray
                    "on":
                      color: yellow
- id: salonday
  name: Salon Day
  entities:
    light.salonlights:
      brightness: 254
      kelvin: 5000
      state: 'on'
      transition: 5```

hallo!

This works fine for me:


          - type: entity-button
            entity: script.openblinds_unten
            icon: mdi:weather-sunny
            color: rgb(28, 128, 199)
            name: Sonne rein
            tap_action:
              action: call-service
              service: script.turn_on
              service_data:
                entity_id: script.openblinds_unten

Greez