Skip to content

Commit

Permalink
Merge branch '3.1.0' into CRDCDH-1497
Browse files Browse the repository at this point in the history
  • Loading branch information
amattu2 authored Oct 18, 2024
2 parents dbf24af + 658acc3 commit 3e93f79
Show file tree
Hide file tree
Showing 41 changed files with 684 additions and 152 deletions.
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ REACT_APP_UPLOADER_CLI_WINDOWS=""
REACT_APP_UPLOADER_CLI_MAC_X64=""
REACT_APP_UPLOADER_CLI_MAC_ARM=""

# Data Common Config
REACT_APP_HIDDEN_MODELS=""

# Optional - Frontend Build/Version
REACT_APP_FE_VERSION=""

Expand Down
1 change: 1 addition & 0 deletions conf/inject.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ window.injectedEnv = {
REACT_APP_UPLOADER_CLI_WINDOWS: "${REACT_APP_UPLOADER_CLI_WINDOWS}",
REACT_APP_UPLOADER_CLI_MAC_X64: "${REACT_APP_UPLOADER_CLI_MAC_X64}",
REACT_APP_UPLOADER_CLI_MAC_ARM: "${REACT_APP_UPLOADER_CLI_MAC_ARM}",
REACT_APP_HIDDEN_MODELS: "${HIDDEN_MODELS}",
};
1 change: 1 addition & 0 deletions public/js/injectEnv.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ window.injectedEnv = {
REACT_APP_GA_TRACKING_ID: "",
REACT_APP_FE_VERSION: "",
REACT_APP_BACKEND_API: "",
REACT_APP_HIDDEN_MODELS: "",
};
File renamed without changes
Binary file removed src/assets/modelNavigator/CDS_Logo.png
Binary file not shown.
File renamed without changes
1 change: 1 addition & 0 deletions src/components/Contexts/SubmissionContext.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const baseSubmission: Submission = {
createdAt: "",
updatedAt: "",
studyID: "",
collaborators: [],
};

const TestChild: FC = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/DataSubmissions/CopyAdornment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const CopyAdornment: FC<Props> = ({ _id }) => {
};

return (
<StyledCopyWrapper direction="row" spacing={1.625} alignItems="center">
<StyledCopyWrapper direction="row" gap="13px" alignItems="center">
<StyledCopyLabel data-testid="data-submission-id-label" variant="body1">
SUBMISSION ID:
</StyledCopyLabel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const baseSubmission: Omit<
studyID: "",
deletingData: false,
nodeCount: 0,
collaborators: [],
};

const baseAuthCtx: AuthCtxState = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const baseSubmission: Submission = {
nodeCount: 0,
createdAt: "",
updatedAt: "",
collaborators: [],
};

const baseBatch = {
Expand Down
Loading

0 comments on commit 3e93f79

Please sign in to comment.