Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion frontend/app/CommissionsList/CommissionDeleteDataComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,10 @@ const CommissionDeleteDataComponent: React.FC<CommissionDeleteDataComponentProps
<br />
1. If you have 'Project Records' enabled it will break
deletion from Vidispine, the Storage Area Network, and the
Object Matrix system.
Object Matrix system. If you need to delete the project
records, it is best to come back about a week after the
first delete attempt was made to give the system time to
delete other data.
<br />
<br />
2. Some parts of the Pluto system where not designed to be
Expand Down Expand Up @@ -434,6 +437,15 @@ const CommissionDeleteDataComponent: React.FC<CommissionDeleteDataComponentProps
>
Back
</Button>
<Button
className="cancel"
variant="outlined"
onClick={() =>
window.location.assign(`/pluto-core/deleted/`)
}
>
Deletion Records
</Button>
<Button type="submit" variant="contained" color="secondary">
Submit Delete Request
</Button>
Expand Down
11 changes: 10 additions & 1 deletion frontend/app/ProjectEntryList/ProjectDeleteDataComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,9 @@ const ProjectDeleteDataComponent: React.FC<ProjectDeleteDataComponentProps> = (
<br />
1. If you have 'Project Record' enabled it will break deletion
from Vidispine, the Storage Area Network, and the Object Matrix
system.
system. If you need to delete the project record, it is best to
come back about a week after the first delete attempt was made
to give the system time to delete other data.
<br />
<br />
2. Some parts of the Pluto system where not designed to be
Expand Down Expand Up @@ -368,6 +370,13 @@ const ProjectDeleteDataComponent: React.FC<ProjectDeleteDataComponentProps> = (
>
Back
</Button>
<Button
className="cancel"
variant="outlined"
onClick={() => window.location.assign(`/pluto-core/deleted/`)}
>
Deletion Records
</Button>
<Tooltip title="See project's media">
<IconButton
onClick={() =>
Expand Down
Loading