We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3e74db commit 05e3e0bCopy full SHA for 05e3e0b
packages/collection-model/lib/model.js
@@ -404,7 +404,10 @@ const CollectionCollection = AmpersandCollection.extend(
404
// filtering, but for now this preserves the current behavior
405
// and changing it right away will expand the scope of the
406
// refactor significantly. We can address this in COMPASS-5211
407
- return getNamespaceInfo(coll._id).system === false;
+ return (
408
+ getNamespaceInfo(coll._id).system === false ||
409
+ getNamespaceInfo(coll._id).collection === 'system.profile'
410
+ );
411
})
412
.map(({ _id, ...rest }) => {
413
return {
0 commit comments