File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ class _Renderer_Package extends RendererBase<Package> {
131
131
getValue: (Object c) => (c as Package ).documentedCategories,
132
132
),
133
133
'documentedCategoriesSorted' : Property (
134
- getValue: (Package c) => c .documentedCategoriesSorted,
134
+ getValue: (Object c) => (c as Package ) .documentedCategoriesSorted,
135
135
),
136
136
'documentedWhere' : Property (
137
137
getValue: (Object c) => (c as Package ).documentedWhere,
@@ -331,7 +331,7 @@ class _Renderer_LibraryContainer extends RendererBase<LibraryContainer> {
331
331
getValue: (Object c) => (c as LibraryContainer ).publicLibraries,
332
332
),
333
333
'publicLibrariesSorted' : Property (
334
- getValue: (LibraryContainer c) => c .publicLibrariesSorted,
334
+ getValue: (Object c) => (c as LibraryContainer ) .publicLibrariesSorted,
335
335
),
336
336
'sortKey' : Property (
337
337
getValue: (Object c) => (c as LibraryContainer ).sortKey,
You can’t perform that action at this time.
0 commit comments