entities can not be a string.
See original GitHub issueThe docs state that the entities option can be string or list.
Using a string works in the UI, however it fails when using the “Unused entities page”.
That script assumes that entities is a list, and not a string.
This will work in the ui, but not in the unused entities page
- type: custom:mini-graph-card
entities: sensor.somesensor
This will work everywhere
- type: custom:mini-graph-card
entities:
- sensor.somesensor
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
linq to entities can not convert int to string - Stack Overflow
so I tried to convert the dbset to list before the where statement as I found in another post LINQ to Entities does...
Read more >Relationships - EF Core | Microsoft Learn
Dependent entity: This is the entity that contains the foreign key properties. ... Do not depend on the join type being Dictionary<string, ...
Read more >Fixing the JPA error "java.lang.String cannot be cast to [Ljava ...
Another way to fix this error is by mapping the result set to an entity. This way, we can decide how to map...
Read more >Entity Inheritance - The Java EE 6 Tutorial
Entities may inherit from superclasses that contain persistent state and mapping information but are not entities. That is, the superclass is not decorated...
Read more >Entities, Properties, and Keys - App Engine - Google Cloud
Entities of the same kind do not need to have the same properties, and an entity's ... Your application can specify its own...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Please let me know if I can help you test this or anything else.
Also, Im on the SHG discrod if you wanna get in touch quick.
Great idea, I guess I could throw in a couple of check when setting the config, thanks!