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
A clear and concise description of what the bug is.
Steps to reproduce the behavior:
The key should be capitalized
This can be fixed by changing the This function
to
const handlePaste = (e: ClipboardEvent<HTMLInputElement>) => { e.preventDefault(); const delimitters = [":", "="]; const pastedContent = e.clipboardData.getData("text"); let { key, value } = getKeyValue(pastedContent, delimitters); if (currentWorkspace?.autoCapitalization) { key = key.toUpperCase(); } setValue("key", key); setValue("value", value); };
This is needs to be handled in backend as well in secret service
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The key should be capitalized
Screenshots
Additional context
This can be fixed by changing the This function
to
Backend
This is needs to be handled in backend as well in secret service
The text was updated successfully, but these errors were encountered: