-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#2392 auto cr post release #2402
#2392 auto cr post release #2402
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking very lit
src/backend/src/prisma/migrations/20240515230546_add_original_data_to_scope_cr/migration.sql
Outdated
Show resolved
Hide resolved
src/frontend/src/pages/ChangeRequestDetailPage/DiffSection/DiffSection.tsx
Outdated
Show resolved
Hide resolved
summary: associatedProject!.summary, | ||
rules: associatedProject!.rules, | ||
goals: { | ||
connect: associatedProject!.goals.map((goal) => ({ descriptionId: goal.descriptionId })) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- I wouldn't do the not null (!) if u can, it's generally not great bc it can let errors slip through, 2. I think this line needs to be updated to be projectQueryArgs, because goals for the original project is showing up as undefined when I try to review a Create Project CR and it's causing an error
src/frontend/src/pages/ProjectDetailPage/ProjectForm/LinksEditView.tsx
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -66,7 +66,7 @@ export const descriptionBulletToChangeListValue = ( | |||
): ChangeListValue<DescriptionBulletPreview> => { | |||
return { | |||
element: descriptionBullet, | |||
comparator: `${descriptionBullet.id}`, | |||
comparator: `${descriptionBullet.detail}`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why
Changes
See ticket for list of changes
Notes
Reviewing a project now does not work due to the schema change. I have poured myself over the error message trying to see where the description bullets are lost. Reviewing a work package works though, and the diff actually looks right!
Also, dates are being really funky, probably the time zone thing again:
These dates should be unchanged:
Also, neither date is a Monday; I think they just move back each cr
Screenshots
If you made UI changes you must post a screenshot of the whole page for each change in 1) a normal sized window and 2) the smallest possible window
If you did any manual testing (e.g., with Postman), put screenshots of the http request and before and after of the db
If none of this applies, you can delete this section
Checklist
It can be helpful to check the
Checks
andFiles changed
tabs.Please review the contributor guide and reach out to your Tech Lead if anything is unclear.
Please request reviewers and ping on slack only after you've gone through this whole checklist.
yarn.lock
changes (unless dependencies have changed)Closes #2392