Skip to content

Commit 7fdc162

Browse files
committed
fix missed dereference
1 parent 67965b2 commit 7fdc162

File tree

1 file changed

+1
-1
lines changed
  • datahub-web-react/src/app/entity/shared/containers/profile/sidebar/FormInfo

1 file changed

+1
-1
lines changed

datahub-web-react/src/app/entity/shared/containers/profile/sidebar/FormInfo/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,6 @@ export function getVerificationAuditStamp(entityData: GenericEntityProperties |
317317
export function getBulkByQuestionPrompts(formUrn: string, entityData: GenericEntityProperties | null) {
318318
const formAssociation = getFormAssociation(formUrn, entityData);
319319
return (
320-
formAssociation?.form?.info?.prompts.filter((prompt) => !SCHEMA_FIELD_PROMPT_TYPES.includes(prompt.type)) || []
320+
formAssociation?.form?.info?.prompts?.filter((prompt) => !SCHEMA_FIELD_PROMPT_TYPES.includes(prompt.type)) || []
321321
);
322322
}

0 commit comments

Comments
 (0)