Skip to content

Commit

Permalink
Merge pull request #597 from srpmtt/dev
Browse files Browse the repository at this point in the history
disable site picker searchbox
  • Loading branch information
joaojmendes authored Jan 10, 2024
2 parents db99fbe + b4bb3a9 commit 10e84c1
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 10e84c1

Please sign in to comment.