diff options
author | bobzel <zzzman@gmail.com> | 2020-10-09 17:16:09 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-10-09 17:16:09 -0400 |
commit | a97f2f001af346629247a55d5efd19eaa406bb10 (patch) | |
tree | 304ed9d3f80a252704795b72ce67c7aae2c6f83d /src/client/util/GroupMemberView.tsx | |
parent | 2555972e14046d7042ed575db1d80c8a7ba06ae6 (diff) |
backward compatibiilty with groupName
Diffstat (limited to 'src/client/util/GroupMemberView.tsx')
-rw-r--r-- | src/client/util/GroupMemberView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/GroupMemberView.tsx b/src/client/util/GroupMemberView.tsx index d9174561c..927200ed3 100644 --- a/src/client/util/GroupMemberView.tsx +++ b/src/client/util/GroupMemberView.tsx @@ -33,7 +33,7 @@ export class GroupMemberView extends React.Component<GroupMemberViewProps> { <input className="group-title" style={{ marginLeft: !hasEditAccess ? "-14%" : 0 }} - value={StrCast(this.props.group.title)} + value={StrCast(this.props.group.title || this.props.group.groupName)} onChange={e => this.props.group.title = e.currentTarget.value} disabled={!hasEditAccess} > |