#Can I pin integrations/dashboard to sidebar?
1 messages · Page 1 of 1 (latest)
What page?
/config/integrations/dashboard
I don't think that there's a built-in way to do it, but I use this to redirect to several different screens in HA:
https://gist.github.com/balloob/580deaf8c3fc76948559c5963ed4d436
You may also be able to use a webpage dashboard, but it seems kinda hacky:
I think that will work , thanks!
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.
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
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.
I guess it's built-in now
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...
I would still call it an "advanced" feature, and once it works, it works 🙂
The other way works great. Thanks!