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 4cced3e commit c92237bCopy full SHA for c92237b
packages/compass-indexes/src/components/regular-indexes-table/regular-indexes-table.tsx
@@ -260,8 +260,11 @@ function mergeIndexes(
260
// exclude partially-built indexes so that we don't include indexes that
261
// only exist on the primary node and then duplicate those as rolling
262
// builds in the same table
263
- .filter((index) => !rollingIndexNames.has(index.name))
264
- .filter((index) => !inProgressIndexNames.has(index.name))
+ .filter(
+ (index) =>
265
+ !rollingIndexNames.has(index.name) &&
266
+ !inProgressIndexNames.has(index.name)
267
+ )
268
.map((index) => {
269
return { ...index, compassIndexType: 'regular-index' };
270
});
0 commit comments