Skip to content

Commit 9ac487e

Browse files
fix: unexpected view button of signers for signyourself document in report
1 parent cbb737f commit 9ac487e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

apps/OpenSign/src/primitives/GetReportDisplay.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ const ReportTable = (props) => {
12461246
{formatRow(item?.ExtUserPtr)}
12471247
</td>
12481248
<td className="px-4 py-2">
1249-
{item?.Placeholders ? (
1249+
{!item?.IsSignyourself && item?.Placeholders ? (
12501250
<button
12511251
onClick={() => handleViewSigners(item)}
12521252
className="op-link op-link-primary"

apps/OpenSignServer/cloud/parsefunction/reportsJson.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export default function reportJson(id, userId) {
2828
'Signers.Email',
2929
'Signers.Phone',
3030
'Placeholders',
31+
'IsSignyourself',
3132
],
3233
};
3334

@@ -137,6 +138,7 @@ export default function reportJson(id, userId) {
137138
'Signers.Phone',
138139
'TimeToCompleteDays',
139140
'Placeholders',
141+
'IsSignyourself',
140142
],
141143
};
142144
// declined documents report

0 commit comments

Comments
 (0)