Skip to content

Commit 08e8055

Browse files
fix: disable date change in placeholder and template flow
1 parent 375aa0b commit 08e8055

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/OpenSign/src/components/pdf/PlaceholderType.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,9 @@ function PlaceholderType(props) {
649649
</div>
650650
)}
651651
disabled={
652-
props.isNeedSign && props.data?.signerObjId !== props.signerObjId
652+
props.isPlaceholder ||
653+
(props.isNeedSign &&
654+
props.data?.signerObjId !== props.signerObjId)
653655
}
654656
onBlur={handleInputBlur}
655657
closeOnScroll={true}

0 commit comments

Comments
 (0)