Closed rwzdoorn closed 1 month ago
Hi @rwzdoorn, That is not a valid configuration. It would be good that you download the example provided in the documentation and start over it.
Things that I am seeing that are not right:
order
not inside sidebar
All items in config.order should have a unique item property
path
is not a valid property for an order itemtitle
is not a valid property for an order itemRegards
Hi @rwzdoorn, Let me know if you still need some help setting up the plugin. Regards
Ok, I didn't do my job properly I guess. I checked out the sidebar-config.yaml and it works like a charm (ofcource).
I do have a question. I have this:
order:
- item: overview
order: 1
- new_item: true
item: Automations
href: "/config/automation"
icon: mdi:robot
order: 2
- new_item: true
item: Integrations
href: "/config/integrations"
icon: mdi:puzzle
order: 3
- new_item: true
item: Entities
href: "/config/entities"
icon: mdi:hexagon-multiple
order: 4
- item: terminal
order: 6
bottom: true
- item: hacs
order: 7
- item: config # Add this block to include Settings
order: 8
bottom: true
- item: developer tools
name: Dev tools
icon: mdi:tools
bottom: true
order: 10
For some reason my config Is not going to the bottom of the panel (between hats & dev tools.
ps; keep up the good work and thanks for replying quickly!
@rwzdoorn,
Ok, I didn't do my job properly I guess. I checked out the sidebar-config.yaml and it works like a charm (ofcource).
Glad to hear that you have solved it 👍
For some reason my config Is not going to the bottom of the panel (between hats & dev tools.
Most probably it is not matching the item (you can check if there is any warning in the console of your browser dev tools). But if it is that, it should be visible, could you make a screenshot of your sidebar?
Hi,
This is currently my sidebar:
I want to move the settings at the bottom. Also, how do I press the Studio Code Server at the bottom?
That is the issue, you are trying to match an item called config
by its text and there is no any item with the text config
.
You can either match by data-panel
:
order:
...
- item: config
match: data-panel
order: 8
bottom: true
Or to match by text:
order:
...
- item: settings
order: 8
bottom: true
For the Studio Code Server
the easiest way is to match it by text:
order:
...
- item: studio code
order: 9
bottom: true
You sir, are briljant. This fixed the issue!
First off; thanks for reviving this add-on!
I'm trying (and struggling) to get the custom sidebar up and running with version +5.0.
I have this in my sidebar-config.yaml:
For some reason the Integrations, Entities and Automations are not shown.
Is it possible to update the documentation and example(s)?