diff --git a/ui/charts.go b/ui/charts.go index 4305d6ef..4222bab2 100644 --- a/ui/charts.go +++ b/ui/charts.go @@ -123,16 +123,6 @@ func CreateItem() []Item { Content: "This is a card that displays dynamic entity count data", Widget: "entityCount", }, - { - Title: "Label Card", - Content: "This is a label card", - Widget: "label", - }, - { - Title: "Progress Bar", - Content: "This is a progress bar", - Widget: "progressBar", - }, } return items diff --git a/ui/web/static/js/charts.js b/ui/web/static/js/charts.js index 2b55ad99..379f79a7 100644 --- a/ui/web/static/js/charts.js +++ b/ui/web/static/js/charts.js @@ -604,7 +604,7 @@ class EntityCount extends Chart { super(widgetID, chartData); this.Style = { width: "400px", - height: "175px", + height: "220px", }; this.Content = this.#generateContent(); } @@ -617,16 +617,14 @@ class EntityCount extends Chart {
35
+35