Statistics Graph Card - no statistics found

Seeing this with an ESPHome device I added…if I tap it says not found, if I go to the “show more” it shows fine.

sensor:

  # Water pressure analog signal in scale
  - platform: adc
    pin: SVP
    name: "Water Pressure"
    id: water_pressure
    unit_of_measurement: "psi"
    icon: "mdi:gauge"
    device_class: "pressure"
    state_class: "measurement"
    accuracy_decimals: 0
    update_interval: 1s
    # Required for ESP32 to measure 3.3v
    attenuation: 11dB
    #force_update: true
    #internal: true
    filters:
      - calibrate_linear:
          # Zero-Pressure Calibration:
          - 0.3430 -> 0.0
          # Working-Pressure Calibration:
          - 1.91800 -> 58.0
      - sliding_window_moving_average:
          window_size: 15
          send_every: 1
    on_value:
      - logger.log:
          format: "*CALIBRATE Pressure LB-Correction: adc_raw=%.4f / output=%.4f lb"
          args: [ 'id(water_pressure).raw_state', 'id(water_pressure).state' ]

image