Skip to content

Commit

Permalink
[App Search] Fix outcome field on Audit log modal. (#131024)
Browse files Browse the repository at this point in the history
* Change outcome field type to event.outcome

* Change message column to a field
  • Loading branch information
efegurkan authored Apr 27, 2022
1 parent 9e19781 commit ac560f3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const AuditLogsModal: React.FC = () => {
},
{
type: 'field',
field: 'outcome',
field: 'event.outcome',
header: i18n.translate(
'xpack.enterpriseSearch.appSearch.engines.auditLogsModal.headers.outcome',
{
Expand All @@ -101,7 +101,8 @@ export const AuditLogsModal: React.FC = () => {
),
},
{
type: 'message',
type: 'field',
field: 'message',
width: '50%',
},
]}
Expand Down

0 comments on commit ac560f3

Please sign in to comment.