aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/GroupMemberView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-10-09 11:36:56 -0400
committerbobzel <zzzman@gmail.com>2020-10-09 11:36:56 -0400
commitc8e8cbe52a97835342c3a3d04033462f4497cd72 (patch)
tree009b1a3d779fe9cd2eb33f38e35ed60ab5ab4473 /src/client/util/GroupMemberView.tsx
parentd4e967ed8fc2f99d44b887ebabf0a4eb642ecaab (diff)
trying to get group updates to work automatically
Diffstat (limited to 'src/client/util/GroupMemberView.tsx')
-rw-r--r--src/client/util/GroupMemberView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/GroupMemberView.tsx b/src/client/util/GroupMemberView.tsx
index 4ead01e9f..d9174561c 100644
--- a/src/client/util/GroupMemberView.tsx
+++ b/src/client/util/GroupMemberView.tsx
@@ -33,8 +33,8 @@ export class GroupMemberView extends React.Component<GroupMemberViewProps> {
<input
className="group-title"
style={{ marginLeft: !hasEditAccess ? "-14%" : 0 }}
- value={StrCast(this.props.group.groupName)}
- onChange={e => this.props.group.groupName = e.currentTarget.value}
+ value={StrCast(this.props.group.title)}
+ onChange={e => this.props.group.title = e.currentTarget.value}
disabled={!hasEditAccess}
>
</input>