Skip to content

Commit ddab038

Browse files
Merge remote-tracking branch 'origin/main' into beta-releases
2 parents f766749 + 08abecb commit ddab038

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
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 Sun Dec 29 2024.
2+
This document was automatically generated on Sun Jan 05 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
@@ -1,7 +1,7 @@
11

22
# Compass Tracking Plan
33

4-
Generated on Sun, Dec 29, 2024 at 03:16 AM
4+
Generated on Sun, Jan 5, 2025 at 03:16 AM
55

66
## Table of Contents
77

packages/compass-connections-navigation/src/with-status-marker.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@ const withStatusMarkerStyles = css({
106106
const withStatusMarkerMarkerStyles = css({
107107
position: 'absolute',
108108
display: 'flex',
109-
right: `-${spacing[50]}px`,
110-
bottom: `-${spacing[50]}px`,
109+
// Shows the marker in the bottom right corner of the parent element
110+
right: '0px',
111+
bottom: '0px',
111112
});
112113

113114
export function WithStatusMarker({

packages/compass-web/sandbox/sandbox-atlas-sign-in.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ const descriptionStyles = css({
4242

4343
const actionLabelStyles = css({
4444
flex: 'none',
45-
// To center-align against the title
46-
marginTop: '-20px',
4745
});
4846

4947
function ToastBodyWithAction({

packages/compass/src/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ declare module 'process' {
3232
HADRON_METRICS_SEGMENT_API_KEY?: string;
3333
HADRON_METRICS_SEGMENT_HOST?: string;
3434
HADRON_AUTO_UPDATE_ENDPOINT: string;
35+
HADRON_AUTO_UPDATE_ENDPOINT_OVERRIDE?: string;
3536
COMPASS_ATLAS_SERVICE_UNAUTH_BASE_URL_OVERRIDE?: string;
3637
COMPASS_CLIENT_ID_OVERRIDE?: string;
3738
COMPASS_E2E_SKIP_ATLAS_SIGNIN?: string;

packages/compass/src/main/auto-update-manager.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,9 @@ class CompassAutoUpdateManager {
739739
}
740740

741741
this.autoUpdateOptions = {
742-
endpoint: process.env.HADRON_AUTO_UPDATE_ENDPOINT,
742+
endpoint:
743+
process.env.HADRON_AUTO_UPDATE_ENDPOINT_OVERRIDE ??
744+
process.env.HADRON_AUTO_UPDATE_ENDPOINT,
743745
product: product,
744746
channel: process.env.HADRON_CHANNEL,
745747
platform: process.platform,

0 commit comments

Comments
 (0)