-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
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
Disabling spell check on multiple pages #23447
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -135,6 +135,7 @@ function WorkspaceSettingsPage(props) { | |||
containerStyles={[styles.mt4]} | ||||
defaultValue={props.policy.name} | ||||
maxLength={CONST.WORKSPACE_NAME_CHARACTER_LIMIT} | ||||
spellCheck={false} | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is for workspaces's name, here too? I think for any kind of name spell check should be off, I can remove it if its supposed to, just asking again for confirmation There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO, we should keep spell check on this. because this does not come under
What do you say? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These can be proper words too so it is better so show spell errors on mistype. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think in most cases they will have names of some organizations which usually aren't proper english words There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, then its fine. We can turn off spellcheck here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. as you mentioned disabled it. |
||||
/> | ||||
<View style={[styles.mt4]}> | ||||
<Picker | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please rename the component name in this file to be
NewTaskDetailsPage
?