diff options
author | bobzel <zzzman@gmail.com> | 2021-05-25 09:58:55 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-05-25 09:58:55 -0400 |
commit | 4c1fc6bcfdf603bb8c620f9288da09ed69587bfb (patch) | |
tree | 72ce244ed8e38fc2c229b290f45253f6fd6dce75 /src/client/util/SettingsManager.tsx | |
parent | f8de7d5bd84f989f4ca08b10d670345d6083ecdb (diff) |
fixed userColors to be set on mySharingDocs data document. fixed so that field is userColor everywhere (not color).
Diffstat (limited to 'src/client/util/SettingsManager.tsx')
-rw-r--r-- | src/client/util/SettingsManager.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/SettingsManager.tsx b/src/client/util/SettingsManager.tsx index ff7ce68ee..777394b05 100644 --- a/src/client/util/SettingsManager.tsx +++ b/src/client/util/SettingsManager.tsx @@ -58,7 +58,7 @@ export class SettingsManager extends React.Component<{}> { @undoBatch changeFontFamily = action((e: React.ChangeEvent) => Doc.UserDoc().fontFamily = (e.currentTarget as any).value); @undoBatch changeFontSize = action((e: React.ChangeEvent) => Doc.UserDoc().fontSize = (e.currentTarget as any).value); @undoBatch switchActiveBackgroundColor = action((color: ColorState) => Doc.UserDoc().activeCollectionBackground = String(color.hex)); - @undoBatch switchUserColor = action((color: ColorState) => Doc.SharingDoc().userColor = String(color.hex)); + @undoBatch switchUserColor = action((color: ColorState) => { Doc.SharingDoc().userColor = undefined; Doc.GetProto(Doc.SharingDoc()).userColor = String(color.hex); }); @undoBatch playgroundModeToggle = action(() => { this.playgroundMode = !this.playgroundMode; |