File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
microfrontends/SignDocuments/src/Component/LegaDrive/FolderDrive Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -333,7 +333,9 @@ function PdfFileComponent({
333
333
return listType === "table" ? (
334
334
data . Type === "Folder" ? (
335
335
< tr onClick = { ( ) => handleOnclikFolder ( data ) } >
336
- < td >
336
+ < td
337
+ style = { { cursor : "pointer" , display : "flex" , alignItems : "center" } }
338
+ >
337
339
< i
338
340
className = "fa fa-folder"
339
341
aria-hidden = "true"
@@ -351,7 +353,9 @@ function PdfFileComponent({
351
353
</ tr >
352
354
) : data . Type === "AIDoc" ? (
353
355
< tr onClick = { ( ) => handleDraftDoc ( data ) } >
354
- < td >
356
+ < td
357
+ style = { { cursor : "pointer" , display : "flex" , alignItems : "center" } }
358
+ >
355
359
< i
356
360
className = "fa fa-file-text"
357
361
style = { { color : "#0ea3ed" , marginRight : "8px" , fontSize : "26px" } }
@@ -368,7 +372,9 @@ function PdfFileComponent({
368
372
</ tr >
369
373
) : (
370
374
< tr onClick = { ( ) => checkPdfStatus ( data ) } >
371
- < td >
375
+ < td
376
+ style = { { cursor : "pointer" , display : "flex" , alignItems : "center" } }
377
+ >
372
378
< i
373
379
className = "fa fa-file-pdf"
374
380
style = { { color : "#ed4d0e" , marginRight : "8px" , fontSize : "26px" } }
You can’t perform that action at this time.
0 commit comments