Skip to content

Commit 049f67c

Browse files
committed
feat(amazonq): enable export chat feature
1 parent a96a73e commit 049f67c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Feature",
3+
"description": "Amazon Q chat: Click export icon to save chat transcript in Markdown or HTML"
4+
}

packages/core/src/amazonq/webview/ui/main.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -973,12 +973,11 @@ export const createMynahUI = (
973973
icon: MynahIcons.COMMENT,
974974
description: 'View chat history',
975975
},
976-
/* Temporarily hide export chat button from tab bar
977976
{
978977
id: 'export_chat',
979978
icon: MynahIcons.EXTERNAL,
980979
description: 'Export chat',
981-
}, */
980+
},
982981
],
983982
},
984983
})

packages/core/src/shared/db/chatDb/util.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,12 +251,11 @@ export function groupTabsByDate(tabs: Tab[]): DetailedListItemGroup[] {
251251
}
252252

253253
const getConversationActions = (historyId: string): ChatItemButton[] => [
254-
/* Temporarily hide export chat button from tab bar
255254
{
256255
text: 'Export',
257256
icon: 'external' as MynahIconsType,
258257
id: historyId,
259-
}, */
258+
},
260259
{
261260
text: 'Delete',
262261
icon: 'trash' as MynahIconsType,

0 commit comments

Comments
 (0)