Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "spellCheck defaults to false in BasePicker",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "huaxi@microsoft.com"
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ exports[`Component Examples renders PeoplePicker.Types.Example.tsx correctly 1`]
onInput={[Function]}
onKeyDown={[Function]}
role="combobox"
spellCheck={false}
value=""
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ exports[`Component Examples renders TagPicker.Basic.Example.tsx correctly 1`] =
onInput={[Function]}
onKeyDown={[Function]}
role="combobox"
spellCheck={false}
value=""
/>
</div>
Expand Down Expand Up @@ -268,6 +269,7 @@ exports[`Component Examples renders TagPicker.Basic.Example.tsx correctly 1`] =
onInput={[Function]}
onKeyDown={[Function]}
role="combobox"
spellCheck={false}
value=""
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ export class BasePicker<T, P extends IBasePickerProps<T>> extends BaseComponent<
aria-owns={suggestionsAvailable || undefined}
aria-autocomplete={'both'}
onInputChange={this.props.onInputChange}
spellCheck={false}
/>
)}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ exports[`Pickers BasePicker renders BasePicker correctly 1`] = `
onInput={[Function]}
onKeyDown={[Function]}
role="combobox"
spellCheck={false}
value=""
/>
</div>
Expand Down Expand Up @@ -112,6 +113,7 @@ exports[`Pickers BasePicker renders BasePicker with inputProps supply classnames
onKeyDown={[Function]}
placeholder="Bitte einen Benutzer angeben..."
role="combobox"
spellCheck={false}
value=""
/>
</div>
Expand Down Expand Up @@ -171,6 +173,7 @@ exports[`Pickers TagPicker renders TagPicker correctly 1`] = `
onInput={[Function]}
onKeyDown={[Function]}
role="combobox"
spellCheck={false}
value=""
/>
</div>
Expand Down