mirror of
https://github.com/DigiLive/mushroom-strategy.git
synced 2025-08-03 11:34:27 +02:00
Fix domain of lock view
The lock view's domain was defined as `vacuum` causing the view to show the wrong entities.
This commit is contained in:
@@ -7,13 +7,13 @@ import { localize } from '../utilities/localize';
|
||||
import AbstractView from './AbstractView';
|
||||
|
||||
/**
|
||||
* Vacuum View Class.
|
||||
* Lock View Class.
|
||||
*
|
||||
* Used to create a view configuration for entities of the lock domain.
|
||||
*/
|
||||
class LockView extends AbstractView {
|
||||
/** The domain of the entities that the view is representing. */
|
||||
static readonly domain = 'vacuum' as const;
|
||||
static readonly domain = 'lock' as const;
|
||||
|
||||
/** Returns the default configuration object for the view. */
|
||||
static getDefaultConfig(): ViewConfig {
|
||||
|
Reference in New Issue
Block a user