Skip to content

Commit 59ea4f0

Browse files
committed
change default dashbaord theme to light
1 parent d66a9f6 commit 59ea4f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contentctl/objects/dashboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Dashboard(SecurityContentObject):
3131
j2_template: str = Field(default=DEFAULT_DASHBAORD_JINJA2_TEMPLATE, description="Jinja2 Template used to construct the dashboard")
3232
description: str = Field(...,description="A description of the dashboard. This does not have to match "
3333
"the description of the dashboard in the JSON file.", max_length=10000)
34-
theme: DashboardTheme = Field(default=DashboardTheme.dark, description="The theme of the dashboard. Choose between 'light' and 'dark'.")
34+
theme: DashboardTheme = Field(default=DashboardTheme.light, description="The theme of the dashboard. Choose between 'light' and 'dark'.")
3535
json_obj: Json[dict[str,Any]] = Field(..., description="Valid JSON object that describes the dashboard")
3636

3737

0 commit comments

Comments
 (0)