Skip to content

Commit 7a613cf

Browse files
authored
[PDP] fix z-issue and bug with renaming (#753)
1 parent 067acc0 commit 7a613cf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

frontend/degree-plan/components/FourYearPlan/DegreeModal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,7 @@ const ModalInterior = ({
260260
if (
261261
modalObject &&
262262
"id" in modalObject &&
263-
"name" in modalObject &&
264-
"degrees" in modalObject
263+
"name" in modalObject
265264
) {
266265
updateDegreeplan({ name }, modalObject.id);
267266
if (modalObject.id == activeDegreePlan?.id) {

frontend/degree-plan/components/FourYearPlan/SelectListDropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ const DropdownMenu = styled.div<{$isActive: boolean}>`
194194
padding-top: 4px;
195195
position: absolute;
196196
top: 100%;
197-
z-index: 200000;
197+
z-index: 1000;
198198
font-size: 1rem;
199199
`;
200200

0 commit comments

Comments
 (0)