Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/OpenSourceBrain/OSBv2 in…
Browse files Browse the repository at this point in the history
…to develop
  • Loading branch information
filippomc committed Mar 5, 2024
2 parents d5eef98 + 59951a8 commit f582484
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
3 changes: 1 addition & 2 deletions applications/nfsserver/deploy/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# nfs server pvc disk size (/exports)
server:
diskSize: 90Gi
diskSize: 120Gi
17 changes: 13 additions & 4 deletions applications/osb-portal/src/pages/RepositoryPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ import RepositoryService from "../service/RepositoryService";
import { Workspace } from "../types/workspace";
import WorkspaceService from "../service/WorkspaceService";
import { canEditRepository } from "../service/UserService";
import { Alert } from "@mui/material";

const GoBackButton = styled(Button)(({ theme }) => ({
padding: 0,
Expand Down Expand Up @@ -452,10 +453,18 @@ export const RepositoryPage = (props: any) => {
}
>
{checked.length > 0 && (
<OSBChipList
chipItems={checked}
onDeleteChip={(chipPath: string) => handleChipDelete(chipPath)}
/>
<div>
<OSBChipList
chipItems={checked}
onDeleteChip={(chipPath: string) => handleChipDelete(chipPath)}
/>
<Alert
severity="warning"
style={{ marginBottom: "1rem" }}
>
Please note that adding a file when a file with the same name already exists will overwrite the previous version of the file in the workspace.
</Alert>
</div>
)}
<ExistingWorkspaceSelector
setWorkspace={(ws: Workspace) => setWorkspace(ws)}
Expand Down

0 comments on commit f582484

Please sign in to comment.