diff options
author | bobzel <zzzman@gmail.com> | 2023-08-27 20:25:55 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-08-27 20:25:55 -0400 |
commit | 9d6c7f8100de3a952d20ad41ab20872737cb909e (patch) | |
tree | 4e0ac145e4f22649b6516819f094e5ba0e6d6829 /src/client/util/GroupMemberView.tsx | |
parent | 9405a97acabb70ac671029f61e825ba00a8dc3ce (diff) |
lots of cleanup to streamline import orderings (ie packages should not mutually import each other directly or via a chain). change raiseWhenDragged to be keepZWhenDragged and got rid of system wide default.
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 535d8ccc2..7de0f336f 100644 --- a/src/client/util/GroupMemberView.tsx +++ b/src/client/util/GroupMemberView.tsx @@ -29,7 +29,7 @@ export class GroupMemberView extends React.Component<GroupMemberViewProps> { const hasEditAccess = GroupManager.Instance.hasEditAccess(this.props.group); return !this.props.group ? null : ( - <div className="editing-interface" style={{ background: SettingsManager.Instance.userBackgroundColor, color: SettingsManager.Instance.userColor }}> + <div className="editing-interface" style={{ background: SettingsManager.userBackgroundColor, color: SettingsManager.userColor }}> <div className="editing-header"> <input className="group-title" |