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 73c219f commit 5348c66Copy full SHA for 5348c66
apps/OpenSign/src/components/pdf/Placeholder.js
@@ -237,10 +237,12 @@ function Placeholder(props) {
237
}}
238
></i>
239
) : (
240
- props.pos.type !== "date" &&
241
- props.pos.type !== "label" &&
242
- props.pos.type !== "signature" &&
243
- !props.isSignYourself && (
+ ((!props?.pos?.type && props.pos.isStamp) ||
+ (props?.pos?.type &&
+ props?.pos?.type !== "date" &&
+ props?.pos?.type !== "label" &&
244
+ props?.pos?.type !== "signature" &&
245
+ !props.isSignYourself)) && (
246
<i
247
onClick={(e) => {
248
e.stopPropagation();
0 commit comments