Skip to content

Commit

Permalink
fix: merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoalee committed Oct 1, 2024
1 parent 7339b39 commit 966daa3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const ProjectPage: React.FC = (props) => {
borderTopRightRadius: '6px',
borderColor: 'lightgray',
borderBottomColor: 'white',
marginBottom: '-1px',
marginBottom: '-2px',
},
'.MuibuttonBase-root': {},
transition: 'none',
Expand Down
6 changes: 0 additions & 6 deletions compose/neurosynth-frontend/src/pages/Study/EditStudyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ const EditStudyPage: React.FC = (props) => {
>
Giant Panda Identification
</Typography>
<Typography textAlign="start" fontSize="0.6rem">
Back
</Typography>
</Box>
</Button>
<Typography variant="body2" sx={{ marginX: '1rem' }}>
Expand Down Expand Up @@ -129,9 +126,6 @@ const EditStudyPage: React.FC = (props) => {
Reproducibility of fMRI results across four institutions using a
spatial workign memory task
</Typography>
<Typography textAlign="end" fontSize="0.6rem">
Next
</Typography>
</Box>
</Button>
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import { useStudyId } from 'pages/Study/store/StudyStore';
import { useEffect, useMemo, useState } from 'react';
import { useNavigate } from 'react-router-dom';
import EditStudyToolbarStyles from './EditStudyToolbar.styles';
import SaveIcon from '@mui/icons-material/Save';

const EditStudyToolbar: React.FC<{ isViewOnly?: boolean }> = ({ isViewOnly = false }) => {
const navigate = useNavigate();
Expand Down Expand Up @@ -201,7 +202,7 @@ const EditStudyToolbar: React.FC<{ isViewOnly?: boolean }> = ({ isViewOnly = fal
<SwapHorizIcon />
</Fab>
</Box>
<Box>
<Box sx={{ marginBottom: '1rem' }}>
<ButtonGroup orientation="vertical">
<Button
onClick={() =>
Expand Down Expand Up @@ -233,6 +234,11 @@ const EditStudyToolbar: React.FC<{ isViewOnly?: boolean }> = ({ isViewOnly = fal
</Button>
</ButtonGroup>
</Box>
<Box sx={{ marginBottom: '1rem' }}>
<Fab color="success" size="small" sx={{ boxShadow: 'none' }}>
<SaveIcon />
</Fab>
</Box>

{/* <Box sx={{ marginBottom: '1rem' }}>
<Tooltip placement="right" title="move to completed">
Expand Down

0 comments on commit 966daa3

Please sign in to comment.