diff --git a/src/panels/lovelace/cards/hui-todo-list-card.ts b/src/panels/lovelace/cards/hui-todo-list-card.ts index 7182212aa3..7c41a16df5 100644 --- a/src/panels/lovelace/cards/hui-todo-list-card.ts +++ b/src/panels/lovelace/cards/hui-todo-list-card.ts @@ -195,11 +195,10 @@ export class HuiTodoListCard extends LitElement implements LovelaceCard { "has-header": "title" in this._config, })} > -
- ${this._todoListSupportsFeature( - TodoListEntityFeature.CREATE_TODO_ITEM - ) - ? html` + ${!this._config.hide_create && + this._todoListSupportsFeature(TodoListEntityFeature.CREATE_TODO_ITEM) + ? html` +
- ` - : nothing} -
+
+ ` + : nothing}