diff options
author | bobzel <zzzman@gmail.com> | 2020-08-11 11:18:58 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-11 11:18:58 -0400 |
commit | 4c4978483c62f9031c7955f5db5e8f15789fcb50 (patch) | |
tree | 5a3ac95fd66e704a4564ccb42bf57387a817b627 /src/client/views/MainView.tsx | |
parent | 201dc881e15292ee4a013c72b9e473779cf14e18 (diff) |
from last
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 3cbc00c92..dbce1502f 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -342,7 +342,7 @@ export class MainView extends React.Component { || doc.title === "Advanced Item Prototypes" || doc.title === "all Creators") { return "lightgrey"; } - return renderDepth > 0 ? StrCast(Doc.UserDoc()["default-collection-nested-background"]) : StrCast(Doc.UserDoc()["default-collection-background"]); + return StrCast(renderDepth > 0 ? Doc.UserDoc().activeCollectionNestedBackground : Doc.UserDoc().activeCollectionBackground); } if (this.darkScheme) { switch (doc?.type) { |