Skip to content

Commit

Permalink
Fixed pop-up display errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
yanevdw19021209 committed Sep 17, 2023
1 parent dadb332 commit 3e83e33
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const AccessRequests = () => {
/>
) : null}
</p>
<EditAccessRequestDiv></EditAccessRequestDiv>
<EditAccessRequestDiv access={access}></EditAccessRequestDiv>
<DeleteAccessRequest></DeleteAccessRequest>
</li>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const ComplianceMatrix = () => {
<UpdateTask
popupClose={() => setUpdateTaskOpen(false)}
popupOpen={updateTaskOpen}
task={showTask}
/>
) : null}
</div>
Expand Down Expand Up @@ -95,6 +96,7 @@ export const ComplianceMatrix = () => {
<TaskApproval
popupClose={() => setApproveTaskOpen(false)}
popupOpen={approveTaskOpen}
task={showTask}
/>
) : null}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const DataScopes = () => {
<EditDataScopePopup
popupClose={() => setEditDataScopeOpen(false)}
popupOpen={editDataScopeOpen}
// datascope={datascope}
datascope={datascope}
/>
) : null}{' '}
</div>
Expand Down Expand Up @@ -61,7 +61,7 @@ export const DataScopes = () => {
/>
)}
</p>
<EditDataScope></EditDataScope>
<EditDataScope datascope={datascope}></EditDataScope>
<DeleteDataScope></DeleteDataScope>
</li>
);
Expand Down

0 comments on commit 3e83e33

Please sign in to comment.