Skip to content

Commit

Permalink
Merge pull request #2349 from tom0827/TRACK-2136
Browse files Browse the repository at this point in the history
fix project special field stacking when opened
  • Loading branch information
tom0827 authored Jul 18, 2024
2 parents 9259dfd + 24812bc commit 225ef39
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,16 @@ export const ProponentSpecialField = ({

return (
<>
<Grid item xs={6}>
<Grid item xs={12} />
<Grid
item
xs={6}
sx={{
position: "absolute",
right: 2,
width: 372,
}}
>
<SpecialFieldLock
id={id}
open={open}
Expand Down
1 change: 1 addition & 0 deletions epictrack-web/src/components/project/ProjectForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ export default function ProjectForm({
container
spacing={2}
onSubmit={handleSubmit(onSubmitHandler)}
sx={{ position: "sticky" }}
>
<ProjectNameSpecialField
id={project?.id}
Expand Down

0 comments on commit 225ef39

Please sign in to comment.