Tap: call service undefined

i know of the braking changes with 84.2 , so upgraded my test server to 84.2
changed code below (tap action)
but when i hove over it, i get a tooltip 'tap: call service undefined"
and it doesnt do anything

whats wrong here?

  - type: custom:vertical-stack-in-card
    cards:
    - type: picture-elements
      title: Stofzuiger
      image: '/local/vacuum1.jpg'
      elements:
        - type: icon
          icon: mdi:fan
          tap_action: #call-service
            action: call-service
          service: script.vacuum_fan_speed2
          style:
           top: 90%
           left: 95%
           color: '#3090C7'

spacing issue. service: script.vacuum_fan_speed2 needs another 2 spaces in front of it

  - type: custom:vertical-stack-in-card
    cards:
    - type: picture-elements
      title: Stofzuiger
      image: '/local/vacuum1.jpg'
      elements:
        - type: icon
          icon: mdi:fan
          tap_action: #call-service
            action: call-service
            service: script.vacuum_fan_speed2
          style:
           top: 90%
           left: 95%
           color: '#3090C7'

omg, thnx, overlooked it
ok, 1 issue less :slight_smile: