Skip to content

Commit

Permalink
moving space into the condition
Browse files Browse the repository at this point in the history
  • Loading branch information
chiragsalian committed Jun 22, 2023
1 parent 2a5d48d commit d423244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/languages/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -1413,7 +1413,7 @@ export default {
lastReply: 'Last reply',
replies: 'Replies',
reply: 'Reply',
parentNavigationSummary: ({rootReportName, workspaceName}) => `From ${rootReportName} ${workspaceName ? `in ${workspaceName}` : ''}`,
parentNavigationSummary: ({rootReportName, workspaceName}) => `From ${rootReportName}${workspaceName ? ` in ${workspaceName}` : ''}`,
},
qrCodes: {
copyUrlToClipboard: 'Copy URL to clipboard',
Expand Down
2 changes: 1 addition & 1 deletion src/languages/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -1881,7 +1881,7 @@ export default {
lastReply: 'Última respuesta',
replies: 'Respuestas',
reply: 'Respuesta',
parentNavigationSummary: ({rootReportName, workspaceName}) => `De ${rootReportName} ${workspaceName ? `en ${workspaceName}` : ''}`,
parentNavigationSummary: ({rootReportName, workspaceName}) => `De ${rootReportName}${workspaceName ? ` en ${workspaceName}` : ''}`,
},
qrCodes: {
copyUrlToClipboard: 'Copiar URL al portapapeles',
Expand Down

0 comments on commit d423244

Please sign in to comment.