Skip to content

Commit 8001399

Browse files
committed
resolve merge conflicts
2 parents 5fa1a06 + e44ba75 commit 8001399

File tree

35 files changed

+556
-38
lines changed

35 files changed

+556
-38
lines changed

THIRD-PARTY-NOTICES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The following third-party software is used by and included in **Mongodb Compass**.
2-
This document was automatically generated on Mon Apr 14 2025.
2+
This document was automatically generated on Wed Apr 16 2025.
33

44
## List of dependencies
55

docs/tracking-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
> the tracking plan for the specific Compass version you can use the following
77
> URL: `https://github.com/mongodb-js/compass/blob/<compass version>/docs/tracking-plan.md`
88
9-
Generated on Mon, Apr 14, 2025
9+
Generated on Wed, Apr 16, 2025
1010

1111
## Table of Contents
1212

package-lock.json

Lines changed: 247 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/compass-connections/src/stores/connections-store-redux.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1554,10 +1554,7 @@ const connectWithOptions = (
15541554
cloneDeep(connectionOptions),
15551555
SecretsForConnection.get(connectionInfo.id) ?? {}
15561556
),
1557-
connectionInfo: {
1558-
id: connectionInfo.id,
1559-
isAtlas: !!connectionInfo.atlasMetadata,
1560-
},
1557+
connectionId: connectionInfo.id,
15611558
defaultAppName: appName,
15621559
preferences: {
15631560
forceConnectionOptions: forceConnectionOptions ?? [],

packages/compass-crud/src/components/crud-toolbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const crudToolbarStyles = css({
3333
flexDirection: 'column',
3434
alignItems: 'center',
3535
gap: spacing[300],
36-
padding: spacing[300],
36+
padding: spacing[400],
3737
});
3838

3939
const crudBarStyles = css({
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ignores:
2+
- '@mongodb-js/prettier-config-compass'
3+
- '@mongodb-js/tsconfig-compass'
4+
- '@types/chai'
5+
- '@types/sinon-chai'
6+
- 'sinon'
7+
- '@types/chai-dom'
8+
- '@types/react'
9+
- '@types/react-dom'
10+
ignore-patterns:
11+
- 'dist'
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.nyc-output
2+
dist
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['@mongodb-js/eslint-config-compass/plugin'],
4+
parserOptions: {
5+
tsconfigRootDir: __dirname,
6+
project: ['./tsconfig-lint.json'],
7+
},
8+
};
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('@mongodb-js/mocha-config-compass/compass-plugin');

0 commit comments

Comments
 (0)