-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update UI package + Cleanup overrides #1084
Conversation
@@ -8,8 +8,11 @@ import useSWRImmutable from "swr/immutable"; | |||
export function CohortRevision() { | |||
const studySource = useStudySource(); | |||
const underlaySource = useUnderlaySource(); | |||
const { studyId, cohortId, revisionId } = | |||
useParams<{ studyId: string; cohortId: string; revisionId: string }>(); | |||
const { studyId, cohortId, revisionId } = useParams<{ |
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.
changes due to upgraded lint
0bd7344
to
547a212
Compare
547a212
to
801f09a
Compare
@@ -1082,7 +1082,7 @@ function ParticipantsGroup(props: { | |||
</GridLayout> | |||
</GridLayout> | |||
) : ( | |||
<GridLayout cols rowAlign="middle" sx={{ pl: 4 }}> | |||
<GridLayout key={p.id} cols rowAlign="middle" sx={{ pl: 4 }}> |
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.
required in new eslint
@@ -66,7 +66,7 @@ function OccurrenceTable({ id, config }: { id: string; config: Config }) { | |||
root: { data: {}, children }, | |||
}; | |||
|
|||
context.rows[config.entity].forEach((o) => { | |||
context.rows[config.entity]?.forEach((o) => { |
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.
fixes e2e test
--
Underlay test is fixed in #1085