mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Cloud Security] Set DataTable row density to expanded (#191138)
## Summary Due to a [recent change](https://github.com/elastic/kibana/pull/188495) on the UnifiedDataTable component, the density was set to default to `compact`. This PR overrides this property to `expanded` in order to keep consistency with the Design specs. ## Screenshot ### Before PR changes:  ### After PR changes:  ### Design spec 
This commit is contained in:
parent
04916ffc98
commit
c95f01b97b
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
import React, { useState, useMemo } from 'react';
|
||||
import _ from 'lodash';
|
||||
import {
|
||||
DataGridDensity,
|
||||
UnifiedDataTableSettings,
|
||||
UnifiedDataTableSettingsColumn,
|
||||
useColumns,
|
||||
|
@ -362,6 +363,7 @@ export const CloudSecurityDataTable = ({
|
|||
gridStyleOverride={gridStyle}
|
||||
rowLineHeightOverride="24px"
|
||||
controlColumnIds={controlColumnIds}
|
||||
dataGridDensityState={DataGridDensity.EXPANDED}
|
||||
/>
|
||||
</div>
|
||||
</CellActionsProvider>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue