Skip to content

Commit

Permalink
fix: Declaration receipt long publication url handling (#2143)
Browse files Browse the repository at this point in the history
  • Loading branch information
arturlg authored Feb 20, 2024
1 parent 87c0cc5 commit d9a8d7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,8 @@ export const DeclarationReceipt = (input: DeclarationOpmc) => {
? [
{
key: "Site Internet de publication",
value: insertSoftHyphens(declaration.publication.url, 50),
value: insertSoftHyphens(declaration.publication.url, 70),
showAsBlock: true,
},
]
: []),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ export const RepresentationEquilibreeReceipt = ({ repEq }: RepresentationEquilib
repEq.publication.url
? {
key: "Site Internet de publication",
value: insertSoftHyphens(repEq.publication.url, 50),
value: insertSoftHyphens(repEq.publication.url, 70),
showAsBlock: true,
}
: {
key: "Modalités de communication auprès des salariés",
Expand Down

0 comments on commit d9a8d7c

Please sign in to comment.