Dashboards - Put loggers and file editors in the configuration section - not the main

I use the visual studio addon to edit my configuration, not much else.

But it shows on the main screen, so I have to do two clicks to restart the server.

I think it makes sense that backend stuff is not on the main menu.

What do you think?

While I do agree, there is a way to do that now though

#https://www.home-assistant.io/integrations/panel_custom/
panel_custom:
  - name: server_control
    sidebar_title: Server Control
    sidebar_icon: mdi:cog-transfer
    js_url: /api/hassio/app/entrypoint.js
    url_path: config/server_control
    embed_iframe: true
    require_admin: true
    config:
      ingress: core_configurator
  - name: automations
    sidebar_title: Automations
    sidebar_icon: mdi:cog-transfer
    js_url: /api/hassio/app/entrypoint.js
    url_path: config/automation/dashboard
    embed_iframe: true
    require_admin: true
    config:
      ingress: core_configurator
  - name: devices
    sidebar_title: Devices
    sidebar_icon: mdi:cog-transfer
    js_url: /api/hassio/app/entrypoint.js
    url_path: config/devices/dashboard
    embed_iframe: true
    require_admin: true
    config:
      ingress: core_configurator

Wow awesome, didn’t realize this. Might be able to do more than I thought.