Skip to content

Commit 97c17cf

Browse files
fix: table view design opensign-drive
1 parent 4b4e200 commit 97c17cf

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

microfrontends/SignDocuments/src/Component/LegaDrive/FolderDrive/legaDriveComponent.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,9 @@ function PdfFileComponent({
333333
return listType === "table" ? (
334334
data.Type === "Folder" ? (
335335
<tr onClick={() => handleOnclikFolder(data)}>
336-
<td>
336+
<td
337+
style={{ cursor: "pointer", display: "flex", alignItems: "center" }}
338+
>
337339
<i
338340
className="fa fa-folder"
339341
aria-hidden="true"
@@ -351,7 +353,9 @@ function PdfFileComponent({
351353
</tr>
352354
) : data.Type === "AIDoc" ? (
353355
<tr onClick={() => handleDraftDoc(data)}>
354-
<td>
356+
<td
357+
style={{ cursor: "pointer", display: "flex", alignItems: "center" }}
358+
>
355359
<i
356360
className="fa fa-file-text"
357361
style={{ color: "#0ea3ed", marginRight: "8px", fontSize: "26px" }}
@@ -368,7 +372,9 @@ function PdfFileComponent({
368372
</tr>
369373
) : (
370374
<tr onClick={() => checkPdfStatus(data)}>
371-
<td>
375+
<td
376+
style={{ cursor: "pointer", display: "flex", alignItems: "center" }}
377+
>
372378
<i
373379
className="fa fa-file-pdf"
374380
style={{ color: "#ed4d0e", marginRight: "8px", fontSize: "26px" }}

0 commit comments

Comments
 (0)