mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
chore: updated signing fields
Signed-off-by: Adithya Krishna <adikrish@redhat.com>
This commit is contained in:
@ -82,13 +82,17 @@ export const DateField = ({ field, recipient }: DateFieldProps) => {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{!field.inserted && (
|
||||
<p className="group-hover:text-primary text-muted-foreground text-lg duration-200">Date</p>
|
||||
)}
|
||||
|
||||
{field.inserted && (
|
||||
<p className="text-muted-foreground text-sm duration-200">{field.customText}</p>
|
||||
)}
|
||||
<p
|
||||
className={`
|
||||
${
|
||||
!field.inserted
|
||||
? 'group-hover:text-primary text-muted-foreground text-lg duration-200'
|
||||
: 'text-muted-foreground text-sm duration-200'
|
||||
}
|
||||
`}
|
||||
>
|
||||
{field.inserted ? field.customText : 'Date'}
|
||||
</p>
|
||||
</SigningFieldContainer>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user