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/reportManager/ReportManager.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/reportManager/ReportManager.tsx')
-rw-r--r-- | src/client/util/reportManager/ReportManager.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/reportManager/ReportManager.tsx b/src/client/util/reportManager/ReportManager.tsx index 3cd2d47a0..6a236face 100644 --- a/src/client/util/reportManager/ReportManager.tsx +++ b/src/client/util/reportManager/ReportManager.tsx @@ -211,11 +211,11 @@ export class ReportManager extends React.Component<{}> { * @returns the component that dispays all issues */ private viewIssuesComponent = () => { - const darkMode = isDarkMode(SettingsManager.Instance.userBackgroundColor); + const darkMode = isDarkMode(SettingsManager.userBackgroundColor); const colors = darkMode ? darkColors : lightColors; return ( - <div className="view-issues" style={{ backgroundColor: SettingsManager.Instance.userBackgroundColor, color: colors.text }}> + <div className="view-issues" style={{ backgroundColor: SettingsManager.userBackgroundColor, color: colors.text }}> <div className="left" style={{ display: this.rightExpanded ? 'none' : 'flex' }}> <div className="report-header"> <h2 style={{ color: colors.text }}>Open Issues</h2> |