Skip to content

Commit

Permalink
Minor style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianogorza committed May 29, 2024
1 parent a2ff8a9 commit 29d9abc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export const WzSearchBar = ({
paddingSize='s'
hasShadow={false}
hasBorder={false}
color='transparent'
>
{showQuery ? (
<EuiFlexGroup
Expand Down Expand Up @@ -62,8 +63,8 @@ export const WzSearchBar = ({
<EuiFlexItem grow={false} key={idx}>
<EuiBadge className='globalFilterItem' color='hollow'>
{`${filter.meta.key}: ${typeof filter.meta.value === 'function'
? filter.meta.value()
: filter.meta.value
? filter.meta.value()
: filter.meta.value
}`}
</EuiBadge>
</EuiFlexItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

.discoverDataGrid {
height: calc(100vh - 464px);
height: calc(100vh - 458px);
}

.discoverChartContainer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

// This makes the table not generate an unnecessary scroll when filtering data from 1 page and then do another search for more pages.
.vulsInventoryDataGrid {
height: calc(100vh - 214px) !important;
height: calc(100vh - 216px) !important;
}

.euiDataGrid--fullScreen {
Expand Down

0 comments on commit 29d9abc

Please sign in to comment.