We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a882f07 + 74b81a5 commit 7f0f81cCopy full SHA for 7f0f81c
apps/OpenSign/src/constant/Utils.js
@@ -21,7 +21,7 @@ export async function fetchSubscription(
21
try {
22
const extClass = localStorage.getItem("Extand_Class");
23
let extUser;
24
- if (extClass) {
+ if (extClass && extClass.length > 0) {
25
const jsonSender = JSON.parse(extClass);
26
extUser = jsonSender[0].objectId;
27
} else {
@@ -1350,8 +1350,8 @@ export const multiSignEmbed = async (
1350
position.type === radioButtonWidget
1351
? 10
1352
: position.type === "checkbox"
1353
- ? 10
1354
- : newUpdateHeight;
+ ? 10
+ : newUpdateHeight;
1355
const newHeight = ind ? (ind > 0 ? widgetHeight : 0) : widgetHeight;
1356
1357
if (signyourself) {
0 commit comments