mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-09-03 13:56:55 +08:00
feat: chat panel UE done
This commit is contained in:
@@ -67,9 +67,9 @@ const cn = {
|
||||
},
|
||||
Rename: "重命名对话",
|
||||
Typing: "正在输入…",
|
||||
Input: (submitKey: string) => {
|
||||
Input: (submitKey: string, isMobileScreen?: boolean) => {
|
||||
var inputHints = `${submitKey} 发送`;
|
||||
if (submitKey === String(SubmitKey.Enter)) {
|
||||
if (submitKey === String(SubmitKey.Enter) && !isMobileScreen) {
|
||||
inputHints += ",Shift + Enter 换行";
|
||||
}
|
||||
return inputHints + ",/ 触发补全,: 触发命令";
|
||||
|
Reference in New Issue
Block a user