fix: temp field label/text truncation (#1565)
TEMP: Fix the truncation of the field label/text.
This commit is contained in:
committed by
David Nguyen
parent
06076c1809
commit
1aaacab6ca
@@ -236,8 +236,8 @@ export const DocumentSigningNumberField = ({
|
||||
|
||||
if (parsedFieldMeta?.label) {
|
||||
fieldDisplayName =
|
||||
parsedFieldMeta.label.length > 10
|
||||
? parsedFieldMeta.label.substring(0, 10) + '...'
|
||||
parsedFieldMeta.label.length > 20
|
||||
? parsedFieldMeta.label.substring(0, 20) + '...'
|
||||
: parsedFieldMeta.label;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user