Skip to content

Commit

Permalink
fixing CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
opauloh committed Oct 3, 2023
1 parent 6a61c1b commit c991208
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,20 +125,20 @@ export const FieldsSelectorTable = ({
},
};

const tableHeaderValues = {
totalFields: (
<strong data-test-subj="csp:dataTable:fieldsModal:fieldsCount">{totalFields}</strong>
),
};

const tableHeader = (
<EuiFlexGroup>
<EuiFlexItem>
<EuiText data-test-subj="csp:dataTable:fieldsModal:fieldsShowing" size="xs">
<FormattedMessage
id="xpack.csp.dataTable.fieldsModalFieldsShowing"
defaultMessage="Showing {totalFields} fields"
values={tableHeaderValues}
values={{
totalFields: (
<strong data-test-subj="csp:dataTable:fieldsModal:fieldsCount">
{totalFields}
</strong>
),
}}
/>
</EuiText>
</EuiFlexItem>
Expand Down

0 comments on commit c991208

Please sign in to comment.