Skip to content

Commit c3a73d4

Browse files
committed
feat(chat): remove timebreak, add header text and background
1 parent 2867d3d commit c3a73d4

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/components/chat/chat-message-list.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ export default class IgcChatMessageListComponent extends LitElement {
113113
groupedMessages,
114114
(group) => group.date,
115115
(group) => html`
116-
<div class="day-separator">${group.date}</div>
117116
${repeat(
118117
group.messages,
119118
(message) => message.id,

src/components/chat/themes/chat.base.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
align-items: center;
2323
justify-content: space-between;
2424
padding: 10px;
25+
background-color: #edeff0;
2526
}
2627

2728
.info {

stories/chat.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const metadata: Meta<IgcChatComponent> = {
4242
hideUserName: false,
4343
disableAutoScroll: false,
4444
disableAttachments: false,
45-
headerText: '',
45+
headerText: 'AI Chat',
4646
},
4747
};
4848

0 commit comments

Comments
 (0)