Skip to content

Commit

Permalink
Merge branch 'main' into task/WP-288-QueueFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
tjgrafft authored Oct 18, 2023
2 parents d4ac488 + 1b05540 commit 118e7f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const DataFilesCopyModal = React.memo(() => {
Destination
<DataFilesSystemSelector
operation="copy"
systemId={
systemAndHomeDirId={
params.scheme === 'projects'
? 'shared'
: `${selectedSystem?.system}${
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const DataFilesSelectModal = ({ isOpen, toggle, onSelect }) => {
Select Input
<DataFilesSystemSelector
operation="select"
systemId={`${selectedSystem?.system}${
systemAndHomeDirId={`${selectedSystem?.system}${
selectedSystem?.homeDir || ''
}`}
section="modal"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ const DataFilesProjectMembers = ({
};

DataFilesProjectMembers.propTypes = {
projectId: PropTypes.string,
projectId: PropTypes.string.isRequired,
members: PropTypes.arrayOf(
PropTypes.shape({
username: PropTypes.string,
Expand Down

0 comments on commit 118e7f1

Please sign in to comment.