Cannot read properties of undefined (reading 'startsWith')

I try cerate sankey chart but get error. Anyone know why?

- type: custom:sankey-chart
  show_names: true
  unit_prefix: k
  round: 1
  wide: true
  sections:
    - entities:
        - entity_id: sensor.group_power_total
          children:
            - sensor.group_power_lt_1
            - sensor.group_power_lt_2
            - sensor.group_power_workshop

You need to add the children as well.

- type: custom:sankey-chart
  show_names: true
  unit_prefix: k
  round: 1
  wide: true
  sections:
    - entities:
        - entity_id: sensor.group_power_total
          children:
            - sensor.group_power_lt_1
            - sensor.group_power_lt_2
            - sensor.group_power_workshop
    - entities:
        - entity_id: sensor.group_power_lt_1
        - entity_id: sensor.group_power_lt_2
        - entity_id: sensor.group_power_workshop