Skip to content

Commit b09af77

Browse files
authored
Merge pull request #17 from lowcoding/feat/v1.7.6
🐞 fix: undefined
2 parents 681b844 + 3bd834d commit b09af77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "lowcode",
44
"description": "lowcode tool, support ChatGPT",
55
"author": "wjkang <[email protected]>",
6-
"version": "1.7.5",
6+
"version": "1.7.6",
77
"icon": "asset/icon.png",
88
"publisher": "wjkang",
99
"repository": "https://github.com/lowcoding/lowcode-vscode",

β€Žwebview-react/src/pages/chatGPT/index.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const View = () => {
107107
)}
108108
</div>
109109
))}
110-
{chatStore.currentSession().messages.length === 0 && (
110+
{chatStore.currentSession()?.messages.length === 0 && (
111111
<div className={styles.resItem}>
112112
<div className={styles.resHeader}>
113113
<img

0 commit comments

Comments
Β (0)