GUI: how to put "current version" in a group

Hi,

I’m sitll running lovelace in automode. (I’m not feeling comfortable to start with modifying the default interface).
I managed to put the most of my devices in groups
However, there are still some sensors in the badges:

Those are due to my config:

sensor:
  # display the current Home Assistant versions
  - platform: version

  # Weather prediction
  - platform: yr

  # owntracks
  - platform: mqtt
    state_topic: "owntracks/bart/GalaxyA3"
    name: "Battery GSM Bart"
    unit_of_measurement: "%"
    value_template: '{{ value_json.batt }}'
    device_class: battery

Is there a
possibility to show those sensors in a group instead of a badge?

I already tried the my group “miscellaneous”:

# -------------------------------------------
  miscellaneous:
    name: miscellaneous
    entities:
    - sun.sun
    - binary_sensor.updater
    - sensor.version_current

but
- sensor.version_current
does not seem to work.

Can anybody help me with the correct syntax to put

  - platform: version
  - platform: yr

in a group?

thanx in advance,

Kind regards,
Bart

aarrrrrrghhhhhhh
That was an easy one… miscellaneous:

    name: miscellaneous
    entities:
    - sun.sun
    - binary_sensor.updater
    - sensor.current_version
    - sensor.yr_symbol
    - sensor.battery_gsm_bart