Make both instance dropdowns behave the same way

This commit is contained in:
Tulir Asokan 2018-11-11 20:24:59 +02:00
parent 5c5b3568cd
commit 20a9ca6aa6

View File

@ -145,7 +145,7 @@ class Instance extends BaseMainView {
<PrefSelect rowName="Primary user" options={this.clientOptions}
isSearchable={false} value={this.selectedClientEntry}
onChange={({ id }) => this.setState({ primary_user: id })}/>
<PrefSelect rowName="Type" options={this.typeOptions}
<PrefSelect rowName="Type" options={this.typeOptions} isSearchable={false}
value={this.selectedPluginEntry}
onChange={({ id }) => this.setState({ type: id })}/>
</PrefTable>