Skip to content

Commit 95d2794

Browse files
Merge pull request #962 from OpenSignLabs/multiuser_issue
fix: updated pdf should be downloadable from reports
2 parents e7a98d5 + 65ce0d4 commit 95d2794

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

apps/OpenSign/src/components/dashboard/GetDashboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const GetDashboard = (props) => {
3131
<div
3232
className={`${
3333
col?.widget?.bgColor ? col.widget.bgColor : "bg-[#2ed8b6]"
34-
} op-card w-full h-[140px] px-3 pt-4 mb-3 shadow-md"`}
34+
} op-card w-full h-[140px] px-3 pt-4 mb-3 shadow-md`}
3535
data-tut={col.widget.data.tourSection}
3636
>
3737
<Suspense

apps/OpenSignServer/cloud/parsefunction/reportsJson.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ export default function reportJson(id, userId) {
7070
'Signers.UserId',
7171
'AuditTrail',
7272
'Placeholders',
73+
'SignedUrl',
7374
],
7475
};
7576
// In progess report
@@ -106,6 +107,7 @@ export default function reportJson(id, userId) {
106107
'ExpiryDate',
107108
'SendMail',
108109
'Placeholders',
110+
'SignedUrl',
109111
],
110112
};
111113
// completed documents report
@@ -137,7 +139,6 @@ export default function reportJson(id, userId) {
137139
'Placeholders',
138140
],
139141
};
140-
141142
// declined documents report
142143
case 'UPr2Fm5WY3':
143144
return {
@@ -164,6 +165,7 @@ export default function reportJson(id, userId) {
164165
'Signers.Phone',
165166
'Placeholders',
166167
'DeclineReason',
168+
'SignedUrl',
167169
],
168170
};
169171
// Expired Documents report
@@ -195,6 +197,7 @@ export default function reportJson(id, userId) {
195197
'Signers.Email',
196198
'Signers.Phone',
197199
'Placeholders',
200+
'SignedUrl',
198201
],
199202
};
200203
// Recently sent for signatures report show on dashboard
@@ -229,6 +232,7 @@ export default function reportJson(id, userId) {
229232
'AuditTrail.UserPtr',
230233
'ExpiryDate',
231234
'Placeholders',
235+
'SignedUrl',
232236
],
233237
};
234238
// Recent signature requests report show on dashboard
@@ -267,6 +271,7 @@ export default function reportJson(id, userId) {
267271
'Signers.Email',
268272
'Signers.Phone',
269273
'Placeholders',
274+
'SignedUrl',
270275
],
271276
};
272277
// Drafts report show on dashboard

0 commit comments

Comments
 (0)