#Some panel_custom sidebar links broke after 2026.5.0 update?

1 messages · Page 1 of 1 (latest)

zealous dagger
#

I've had these added links to my sidebar for years now:

- name: ha_integ
  sidebar_title: Integrations
  sidebar_icon: mdi:chip
  js_url: /api/hassio/app/entrypoint.js
  url_path: "config/integrations"
  embed_iframe: true
  require_admin: true
  config:
    ingress: core_configurator
- name: ha_auto
  sidebar_title: Automations
  sidebar_icon: mdi:cog-outline
  js_url: /api/hassio/app/entrypoint.js
  url_path: "config/automation"
  embed_iframe: true
  require_admin: true
  config:
    ingress: core_configurator
- name: ha_logs
  sidebar_title: Logs
  sidebar_icon: mdi:file-document-alert
  js_url: /api/hassio/app/entrypoint.js
  url_path: "config/logs"
  embed_iframe: true
  require_admin: true
  config:
    ingress: core_configurator
- name: ha_addons
  sidebar_title: Apps
  sidebar_icon: mdi:apps
  js_url: /api/hassio/app/entrypoint.js
  url_path: "hassio/dashboard"
  embed_iframe: true
  require_admin: true
  config:
    ingress: core_configurator
- name: devtools
  sidebar_title: "Developer Tools"
  sidebar_icon: mdi:hammer
  js_url: /api/hassio/app/entrypoint.js
  url_path: "developer-tools/yaml"
  embed_iframe: true
  require_admin: true
  config:
    ingress: core_configurator

I just updated to 2026.5.0 and noticed the apps link is toaking me to my default dashboard. The others keep working fine.

I think I tweaked something back in 2026.2.0 when addons were renamed to apps and to add the Dev Tools when it was removed too, but that's all, and it continued working. Maybe I missed something in the changelog yesterday affecting this? Or how can I fix it?

zealous dagger
#

It was an easy fix in the end. I have no idea why the previous url was changed to url_path: "hassio/dashboard". So I just changed it to the apps url config/apps/installed.

- name: ha_addons
  sidebar_title: Apps
  sidebar_icon: mdi:apps
  js_url: /api/hassio/app/entrypoint.js
  url_path: "config/apps/installed"
  embed_iframe: true
  require_admin: true
  config:
    ingress: core_configurator
orchid bison
#

I'm stealing your Developer Tools lines. I've been meaning to add that but never took the time.