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.
1 parent 950b747 commit 74b81a5Copy full SHA for 74b81a5
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 {
@@ -1351,8 +1351,8 @@ export const multiSignEmbed = async (
1351
position.type === radioButtonWidget
1352
? 10
1353
: position.type === "checkbox"
1354
- ? 10
1355
- : newUpdateHeight;
+ ? 10
+ : newUpdateHeight;
1356
const newHeight = ind ? (ind > 0 ? widgetHeight : 0) : widgetHeight;
1357
1358
if (signyourself) {
0 commit comments