diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-04-10 16:58:05 -0400 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-04-10 16:58:05 -0400 |
commit | c2b0b413af3e2a4847d26f14f7833f04a3314e7a (patch) | |
tree | 3360f83904dbf026251756c15fb995dbb7181c9e /src/client/util/GroupManager.tsx | |
parent | 3d434ba49ed378cbbf0214d991ca448de0864a03 (diff) | |
parent | f87c528f95912319c4181b3955cad4f1042c021e (diff) |
merging
Diffstat (limited to 'src/client/util/GroupManager.tsx')
-rw-r--r-- | src/client/util/GroupManager.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/util/GroupManager.tsx b/src/client/util/GroupManager.tsx index 68af67a3b..62d656c5d 100644 --- a/src/client/util/GroupManager.tsx +++ b/src/client/util/GroupManager.tsx @@ -1,5 +1,5 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { action, computed, observable, runInAction } from "mobx"; +import { action, computed, observable } from "mobx"; import { observer } from "mobx-react"; import * as React from "react"; import Select from 'react-select'; @@ -284,8 +284,7 @@ export class GroupManager extends React.Component<{}> { placeholder="Group name" onChange={action(() => this.buttonColour = this.inputRef.current?.value ? "black" : "#979797")} /> <Select - isMulti={true} - isSearchable={true} + isMulti options={this.options} onChange={this.handleChange} placeholder={"Select users"} |