Skip to content

Commit

Permalink
disable site picker searchbox
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo committed Dec 20, 2023
1 parent db99fbe commit b4bb3a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ export default class PropertyFieldSitePickerHost extends React.Component<IProper
<div>
{this.props.label && <Label>{this.props.label}</Label>}
<SearchBox
disabled={this.props.disabled}
placeholder={strings.SitePickerSearchBoxPlaceholder}
onChanged={this.async.debounce(this.onSearchFieldChange, this.props.deferredValidationTime)}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,8 @@ export default class PropertyControlsTestWebPart extends BaseClientSideWebPart<I
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: 'sitesFieldId',
trimDuplicates: true
trimDuplicates: true,
disabled: false
}),
PropertyFieldTeamPicker('teams', {
key: 'teamsPicker',
Expand Down

0 comments on commit b4bb3a9

Please sign in to comment.