Skip to content

Commit a2710f2

Browse files
committed
lint
1 parent 64b5dbb commit a2710f2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

x-pack/platform/plugins/shared/agent_builder/server/services/conversation/client/converters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ const convertBaseFromEs = (document: Document) => {
5959
title: document._source.title,
6060
created_at: document._source.created_at,
6161
updated_at: document._source.updated_at,
62-
...(document._source.read !== undefined && { read: document._source.read }),
6362
...(document._source.status !== undefined && { status: document._source.status }),
63+
...(document._source.read !== undefined && { read: document._source.read }),
6464
};
6565
};
6666

x-pack/platform/plugins/shared/agent_builder/server/services/conversation/client/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export type ConversationCreateRequest = Omit<
2727
};
2828

2929
export type ConversationUpdateRequest = Pick<Conversation, 'id'> &
30-
Partial<Pick<Conversation, 'title' | 'rounds' | 'attachments' | 'state' | 'read' | 'status'>>;
30+
Partial<Pick<Conversation, 'title' | 'rounds' | 'attachments' | 'state' | 'status' | 'read'>>;
3131

3232
export interface ConversationListOptions {
3333
agentId?: string;

0 commit comments

Comments
 (0)