matt8707 / ha-fusion

A modern, easy-to-use and performant custom Home Assistant dashboard
MIT License
2.06k stars 87 forks source link

Save button does nothing #534

Closed paulmorabito closed 1 month ago

paulmorabito commented 1 month ago

Hi, I'm using the latest version as an add-on on 2024.7.3 of Home Assistant (HassOS). The issue I am facing is the save button is not working.

Is there any further info I can provide you to further trouble shoot?

matt8707 commented 1 month ago

Hi, yes, addon logs and browser console logs

paulmorabito commented 1 month ago

Here you go:

js.log

Add-on logs:

s6-rc: info: service s6rc-oneshot-runner: starting s6-rc: info: service s6rc-oneshot-runner successfully started s6-rc: info: service fix-attrs: starting s6-rc: info: service fix-attrs successfully started s6-rc: info: service legacy-cont-init: starting s6-rc: info: service legacy-cont-init successfully started s6-rc: info: service legacy-services: starting s6-rc: info: service legacy-services successfully started Starting Fusion... ADDON: true INGRESS_PORT: 8099 EXPOSED_PORT: HASS_PORT: 8123

matt8707 commented 1 month ago

Thanks, in js.log i see

CodeConfig.CxOcBhK1.js:1 Y {name: 'YAMLException', reason: 'can not read a block mapping entry; a multiline key may not be an implicit key', mark: {…}, message: 'can not read a block mapping entry; a multiline ke… 12 | ffff\n 13 | \n 14 | theme: godis\n-----------^', stack: 'YAMLException: can not read a block mapping entry;…p/immutable/chunks/CodeConfig.CxOcBhK1.js:1:5418)'}

I think you're trying to save invalid yaml in code editor

paulmorabito commented 1 month ago

Yeah I pasted the element incorrectly but the last attempt had valid yml. On 22 Jul 2024 at 19:19 +0200, Mattias Persson @.***>, wrote:

Thanks, in js.log i see CodeConfig.CxOcBhK1.js:1 Y {name: 'YAMLException', reason: 'can not read a block mapping entry; a multiline key may not be an implicit key', mark: {…}, message: 'can not read a block mapping entry; a multiline ke… 12 | ffff\n 13 | \n 14 | theme: godis\n-----------^', stack: 'YAMLException: can not read a block mapping entry;…p/immutable/chunks/CodeConfig.CxOcBhK1.js:1:5418)'} I think you're trying to save invalid yaml in code editor — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

matt8707 commented 1 month ago

Can you post your yaml like this

```yaml
theme: godis
paulmorabito commented 1 month ago

Here it is. i've just installed it and am trying to get to grips with how it worked so added an entity to the yaml. There are no config errors reported in the editor.

views:
  - id: 1896633189085
    type: configure
    name: Overview
  - name: Climate
    id: 995548803567
    sections:
      - type: horizontal-stack
        sections: []
        id: 6196183727261
  - type: entity
    entity: binary_sensor.hue_secure_contact_sensor_1_opening
    icon: mdi:door
    name: Entrance
sidebar: []
theme: godis
matt8707 commented 1 month ago

Yeah, that's valid yaml but wrong config. There's no type entity and they need to be in a view. There's currently no validation, so if you're using code editor there's a chance it breaks. Use the ui and inspect the code later.

paulmorabito commented 1 month ago

Thanks. Is there a way to add elements via the UI only? Or, can I edit the files in another editor and upload them? Do you have a sample file by any chance?

matt8707 commented 1 month ago

Is there a way to add elements via the UI only?

Yes, https://www.youtube.com/watch?v=D8mWruSuPOM

Or, can I edit the files in another editor and upload them?

Yeah, with ssh addon

Do you have a sample file by any chance?

https://github.com/matt8707/ha-fusion/blob/main/data/dashboard.yaml

paulmorabito commented 1 month ago

Ok got it. Regarding the UI, how do I add an element like a sensor. Is it an object? If so, this is always greyed out.

paulmorabito commented 1 month ago

Nvm figured it out. Thank you for the prompt replies.