Skip to content

Commit

Permalink
[Workplace Search] Increase source overview recent activity text size (
Browse files Browse the repository at this point in the history
…#2177) (#119803)

* Increase source overview recent activity text size (#2177)

Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
sphilipse and kibanamachine authored Nov 30, 2021
1 parent e52610f commit affd10d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,19 +222,19 @@ export const Overview: React.FC = () => {
{activities.map(({ details: activityDetails, event, time, status }, i) => (
<EuiTableRow key={i}>
<EuiTableRowCell>
<EuiText size="xs">{event}</EuiText>
<EuiText size="s">{event}</EuiText>
</EuiTableRowCell>
{!custom && (
<EuiTableRowCell>
<EuiText size="xs">
<EuiText size="s">
<small>
{status} {activityDetails && <StatusItem details={activityDetails} />}
</small>
</EuiText>
</EuiTableRowCell>
)}
<EuiTableRowCell align="right">
<EuiText size="xs">
<EuiText size="s">
<small>{time}</small>
</EuiText>
</EuiTableRowCell>
Expand Down

0 comments on commit affd10d

Please sign in to comment.