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 cd2be94 commit f4090c0Copy full SHA for f4090c0
apps/OpenSign/src/components/pdf/Placeholder.js
@@ -74,7 +74,9 @@ function Placeholder(props) {
74
const newDate = moment(milliseconds).format(dateFormat);
75
const dateObj = {
76
date: newDate,
77
- format: dateFormat
+ format: props.pos?.options?.validation?.format
78
+ ? props.pos?.options?.validation?.format
79
+ : "MM/dd/YYYY"
80
};
81
setSelectDate(dateObj);
82
}
apps/OpenSign/src/components/pdf/PlaceholderType.js
@@ -755,6 +755,7 @@ function PlaceholderType(props) {
755
case "label":
756
return (
757
<textarea
758
+ placeholder="Enter label"
759
rows={1}
760
onChange={(e) => {
761
onChangeInput(
0 commit comments