Skip to content

Commit

Permalink
fix translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Jul 16, 2021
1 parent b4dc37e commit 7592578
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,15 @@ export function MlLatencyCorrelations({ onClose }: Props) {
) : null}
</div>
{log.length > 0 && displayLog && (
<EuiAccordion id="accordion1" buttonContent="Log">
<EuiAccordion
id="accordion1"
buttonContent={i18n.translate(
'xpack.apm.correlations.latencyCorrelations.logButtonContent',
{
defaultMessage: 'Log',
}
)}
>
<EuiPanel color="subdued">
{log.map((d, i) => {
const splitItem = d.split(': ');
Expand Down

0 comments on commit 7592578

Please sign in to comment.