Skip to content

Commit 2a3d15f

Browse files
authored
Merge pull request #158 from openobserve/dev
fix: add "theme-blue" to event card item enumeration options
2 parents 8081285 + ed15b59 commit 2a3d15f

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/components/elements/event-card-item.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
"type": "enumeration",
3131
"enum": [
3232
"theme-green-minimal",
33-
"theme-orange"
33+
"theme-orange",
34+
"theme-blue"
3435
]
3536
},
3637
"button": {

types/generated/components.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ export interface ElementsEventCardItem extends Struct.ComponentSchema {
518518
eventStartDate: Schema.Attribute.DateTime;
519519
eventType: Schema.Attribute.String;
520520
theme: Schema.Attribute.Enumeration<
521-
['theme-green-minimal', 'theme-orange']
521+
['theme-green-minimal', 'theme-orange', 'theme-blue']
522522
>;
523523
title: Schema.Attribute.String;
524524
};

0 commit comments

Comments
 (0)