We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/DTStack/doraemon/blob/master/app/web/pages/webTerminal/index.tsx#L136
// 原代码 inputText = inputText.slice(0, currentOffsetLength) + key + inputText.slice(totalOffsetLength - currentOffsetLength)
这里需要减去prefix的长度,当prefix为空时是没有问题的,不为空会错位
inputText = inputText.slice(0, currentOffsetLength - prefix.length) + key + inputText.slice(currentOffsetLength - prefix.length)
The text was updated successfully, but these errors were encountered:
fix: #32 web terminal prefix
0775ff5
Feat optimize (#66)
f854bb9
* feat: #55 delete project and collect * fix: #32 web terminal prefix * docs: #13 * fix: #65 sequelize pool for mysql --------- Co-authored-by: liuyi <liuyi@dtstack.com>
liuxy0551
No branches or pull requests
https://github.com/DTStack/doraemon/blob/master/app/web/pages/webTerminal/index.tsx#L136
这里需要减去prefix的长度,当prefix为空时是没有问题的,不为空会错位
The text was updated successfully, but these errors were encountered: