Skip to content

Commit

Permalink
Merge pull request #115 from charleshtrenholm/fix_share_dropdown
Browse files Browse the repository at this point in the history
Fix share dropdown
  • Loading branch information
charleshtrenholm committed May 3, 2022
2 parents 31c6825 + 242aedf commit 47f5da1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ export default class PermSearch extends Component<PermSearchProps> {
container: (base: any) => ({ ...base, flex: 2 }),
}}
menuPortalTarget={document.body}
onInputChange={this.handleInputChange.bind(this)}
onChange={this.handleUserChange.bind}
onInputChange={this.handleInputChange}
onChange={(e) => this.handleUserChange(e as any[])}
/>
<Select
defaultValue={this.permOptions[0]}
Expand Down

0 comments on commit 47f5da1

Please sign in to comment.