Frigate Lovelace Card. Action with camera as parameter

Hi.
I want open a popup when a camera is clicked in grid mode, showing in fullscreen the clicked camera…
It’s working but I have an static camera id:

  actions:
    tap_action:
      action: perform-action
      perform_action: browser_mod.popup
      data:
        title: Camara
        size: fullscreen
        timeout: 300000
        content:
          type: custom:frigate-card
          cameras:
            - camera_entity: camera.delantera
              live_provider: webrtc-card
              webrtc_card:
                ui: true
          menu:
            style: none
          dimensions:
            height: 85vh
          live:
            controls:
              title:
                mode: none

Is there any way to make the camera entity id dynamic (the selected camera)?

Thanks