From 99fa2a36aa66b9da5ad6f67331966f2bc5321a3e Mon Sep 17 00:00:00 2001 From: DigiLive Date: Mon, 28 Apr 2025 06:40:17 +0200 Subject: [PATCH] Fix domain of lock view The lock view's domain was defined as `vacuum` causing the view to show the wrong entities. --- src/views/LockView.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/LockView.ts b/src/views/LockView.ts index 4913396..9011b16 100644 --- a/src/views/LockView.ts +++ b/src/views/LockView.ts @@ -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 {