diff options
author | bobzel <zzzman@gmail.com> | 2020-08-10 10:37:07 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-10 10:37:07 -0400 |
commit | 03ae3477dac354eff9178dac701ee40e394434c9 (patch) | |
tree | 5a378bc785fa0072092e16b3699ccd8f153e9211 /src/client/util/SettingsManager.tsx | |
parent | 52a0e603f77d1a82fe7f06badb9717813ef38e05 (diff) |
fixed issues with presentationBox grabbing all keyboard events and preventing title edits among others. fixed runtime errors. fixed groupManager to open again.
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 513cece40..e3b91925a 100644 --- a/src/client/util/SettingsManager.tsx +++ b/src/client/util/SettingsManager.tsx @@ -146,7 +146,7 @@ export default class SettingsManager extends React.Component<{}> { @computed get accountsContent() { return <div className="accounts-content"> <button onClick={this.googleAuthorize} value="data">Link to Google</button> - <button onClick={GroupManager.Instance?.open}>Manage groups</button> + <button onClick={() => GroupManager.Instance?.open()}>Manage groups</button> </div>; } |