We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78fe4a commit cca00e9Copy full SHA for cca00e9
2 files changed
docs/content.en/docs/release-notes/_index.md
@@ -33,6 +33,7 @@ Information about release notes of Coco Server is provided here.
33
- fix: incorrect status when installing extension #789
34
- fix: increase read_timeout for HTTP streaming stability #798
35
- fix: enter key problem #794
36
+- fix: fix selection issue after renaming #800
37
38
### ✈️ Improvements
39
src/components/Common/HistoryList/HistoryListItem.tsx
@@ -107,6 +107,8 @@ const HistoryListItem: FC<HistoryListItemProps> = ({
107
onKeyDown={(event) => {
108
if (event.key !== "Enter") return;
109
110
+ event.stopPropagation();
111
+
112
const value = event.currentTarget.value;
113
114
onRename(item._id || "", value);
0 commit comments