From e52be20fbad23818f8043a54d1370ec63fd1017d Mon Sep 17 00:00:00 2001 From: Zack Barett Date: Mon, 2 Nov 2020 03:47:24 -0600 Subject: [PATCH] Grid Card: Fix Card Picker (#7562) Co-authored-by: Bram Kragten --- src/panels/lovelace/editor/lovelace-cards.ts | 7 +++---- src/translations/en.json | 4 ++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/panels/lovelace/editor/lovelace-cards.ts b/src/panels/lovelace/editor/lovelace-cards.ts index 6da45eef00..5842e566c9 100644 --- a/src/panels/lovelace/editor/lovelace-cards.ts +++ b/src/panels/lovelace/editor/lovelace-cards.ts @@ -29,10 +29,6 @@ export const coreCards: Card[] = [ type: "glance", showElement: true, }, - { - type: "grid", - showElement: true, - }, { type: "history-graph", showElement: true, @@ -95,6 +91,9 @@ export const coreCards: Card[] = [ { type: "entity-filter", }, + { + type: "grid", + }, { type: "horizontal-stack", }, diff --git a/src/translations/en.json b/src/translations/en.json index 6323e70856..78034f08cd 100755 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -2502,6 +2502,10 @@ "columns": "Columns", "description": "The Glance card is useful to group multiple sensors in a compact overview." }, + "grid": { + "name": "Grid", + "description": "The Grid card allows you to show multiple cards in a grid." + }, "history-graph": { "name": "History Graph", "description": "The History Graph card allows you to display a graph for each of the entities listed."