Skip to content

Commit

Permalink
remove original comment button
Browse files Browse the repository at this point in the history
  • Loading branch information
JieunSon96 committed Dec 11, 2023
1 parent fd25150 commit add01fe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const UseTableRowView = (props: UseTableRowViewProps) => {
{props.columnsMeta.map((column) => (
<div key={column.key + '-' + index} className={column.className}>
{/* Readonly */}
{props.readOnly && (
{props.readOnly && column.key !== 'uid' && (
<>
<p className="fw-bold mb-0">{column.label}</p>
<p>{rowData[column.key] || <i>Not answered</i>}</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,14 +168,6 @@ const PIACollectionUseAndDisclosure = ({
enableComments={showComments}
commentCount={commentCount}
/>
{/* {showComments && (
<ViewComments
count={
commentCount?.[PiaSections.COLLECTION_USE_AND_DISCLOSURE_STEPS]
}
path={PiaSections.COLLECTION_USE_AND_DISCLOSURE_STEPS}
/>
)} */}
</section>

<h3 className="pt-5 pb-2">{Messages.CollectionNotice.Title.en}</h3>
Expand Down

0 comments on commit add01fe

Please sign in to comment.