Reload a live stream video on tap?

I have a whole bunch of cameras on my dashboard, for example:

  - type: picture-entity
    entity: camera.door_bell_porch
    camera_image: camera.door_bell_porch
    camera_view: live
    aspect_ratio: "3:4"
    tap_action: none

Occasionally, one of picture entity “dies”. I am forced to refresh the page for the camera to reload. This reloads EVERY camera on the page at once. I am using Google Nest cameras, and refreshing 9 cameras at once, can sometimes cause issues with rate-limiting from the Google API.

Is there a way I can set up the picture entities for my cameras, so that tapping on that specific camera, reloads ONLY that camera?

try update that entity like this…

tap_action:
  action: perform-action
  perform_action: homeassistant.update_entity
  data:
    entity_id:
      - camera.entity_id

Doesn’t seem to do anything unfortunately.