#Can I pin integrations/dashboard to sidebar?

1 messages · Page 1 of 1 (latest)

tulip quarry
#

I am building out me HA and always going to this page and its not easy to keep going to, can I link to it faster?

young lodge
#

What page?

tulip quarry
#

/config/integrations/dashboard

young lodge
#

You may also be able to use a webpage dashboard, but it seems kinda hacky:

tulip quarry
#

I think that will work , thanks!

warped flicker
#

Put this file in <config>/www/panel-redirect.js
Is the panel-redirect.js required? Maybe this has been integrated at some point? I don't have it in my /www/ folder. Checked my resources and it is not added in there. I'm pretty sure I only added the portion to configuration.yaml many years ago.
I followed this guide: How to add internal links to the Home Assistant sidebar from 2021. (TL;DR: Enable advanced mode, add/use File Editor, and code block to configuration.yaml.)
panel-redirect.js was last revised in 2020.

young lodge
#

maybe?

#

would be cool if there was a "redirect" dashboard option in the UI

#

looks like it uses module_url: /api/hassio/app/entrypoint.js

warped flicker
#

My code is a little bit different than the GH. ```yaml
panel_custom:

  • name: panel_integrations
    sidebar_title: Integrations
    sidebar_icon: mdi:audio-input-rca
    url_path: "config/integrations"
    module_url: /api/hassio/app/entrypoint.js
    embed_iframe: true
    require_admin: true
    vsyaml
    panel_custom:
  • name: panel-redirect

    url_path needs to be unique for each panel_custom config

    url_path: redirect-server-controls
    sidebar_title: Server Controls
    sidebar_icon: mdi:server
    module_url: /local/panel-redirect.js
    config:

    Where you want to redirect to

    target: /config/server_control
#

Yeah. I was just noticing that.

young lodge
#

I guess it's built-in now

warped flicker
#

And thought I was usually late in finding new stuff that has been added. 😝

#

karwosts mentioned the help button in card configuration window. That was new to me; I had never noticed it. It was added about several years ago...

young lodge
#

I would still call it an "advanced" feature, and once it works, it works 🙂

young lodge
#

The other way works great. Thanks!