diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-07-15 21:52:23 +0530 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-07-15 21:52:23 +0530 |
commit | 3ad593cc8865d3fa1dc22bf403ad7cfaf1a751e6 (patch) | |
tree | 107bd1b2f08d4e53557c56a2d934eaaccbff9812 /src/client/util/GroupManager.tsx | |
parent | e468d507c69b9149c0e972ebad3745e4a046ddf0 (diff) |
bugfix + cleanup
Diffstat (limited to 'src/client/util/GroupManager.tsx')
-rw-r--r-- | src/client/util/GroupManager.tsx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/util/GroupManager.tsx b/src/client/util/GroupManager.tsx index 2d8930660..12951f2ab 100644 --- a/src/client/util/GroupManager.tsx +++ b/src/client/util/GroupManager.tsx @@ -286,7 +286,6 @@ export default class GroupManager extends React.Component<{}> { */ @action createGroup = () => { - // this.createGroupModalOpen = true; if (!this.inputRef.current?.value) { alert("Please enter a group name"); return; @@ -410,9 +409,6 @@ export default class GroupManager extends React.Component<{}> { <div className="group-info" onClick={action(() => this.currentGroup = group)}> <FontAwesomeIcon icon={fa.faInfoCircle} color={"#e8e8e8"} size={"sm"} style={{ backgroundColor: "#1e89d7", borderRadius: "100%", border: "1px solid #1e89d7" }} /> </div> - {/* <button onClick={action(() => this.currentGroup = group)}> - {this.hasEditAccess(group) ? "Edit" : "View"} - </button> */} </div> )} </div> |