Skip to content

Commit 2d2d1fb

Browse files
committed
#275 - Fix for single quotes around the people picker class
1 parent 074ee83 commit 2d2d1fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controls/peoplepicker/PeoplePickerComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export class PeoplePicker extends React.Component<IPeoplePickerProps, IPeoplePic
193193
onResolveSuggestions={this.onSearchFieldChanged}
194194
onEmptyInputFocus={this.returnMostRecentlyUsedPerson}
195195
getTextFromItem={(peoplePersonaMenu: IPersonaProps) => peoplePersonaMenu.text}
196-
className={`'ms-PeoplePicker' ${this.props.peoplePickerCntrlclassName ? this.props.peoplePickerCntrlclassName : ''}`}
196+
className={`ms-PeoplePicker ${this.props.peoplePickerCntrlclassName ? this.props.peoplePickerCntrlclassName : ''}`}
197197
key={'normal'}
198198
removeButtonAriaLabel={'Remove'}
199199
inputProps={{

0 commit comments

Comments
 (0)