diff options
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 b036adcd4..9189c1951 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -357,7 +357,7 @@ export class MainView extends React.Component { defaultBackgroundColors = (doc: Opt<Doc>, renderDepth: number) => { if (doc?.type === DocumentType.COL) { - const system = Object.getOwnPropertyNames(doc).indexOf("system") !== -1; + const system = Doc.IsSystem(doc); return system ? "lightgrey" : StrCast(renderDepth > 0 ? Doc.UserDoc().activeCollectionNestedBackground : Doc.UserDoc().activeCollectionBackground); } if (this.darkScheme) { |