Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Fix: Data Table rendering only in a small scrollable portion of the s…
Browse files Browse the repository at this point in the history
…creen (opensearch-project#3816)

* Fix table not adjusting height on initial page load

Signed-off-by: Sirazh Gabdullin <[email protected]>

* formatting typo fix

Signed-off-by: Sirazh Gabdullin <[email protected]>

* Update CHANGELOG.md

Signed-off-by: Sirazh Gabdullin <[email protected]>

---------

Signed-off-by: Sirazh Gabdullin <[email protected]>
Signed-off-by: David Sinclair <[email protected]>
  • Loading branch information
curq authored and sikhote committed Apr 24, 2023
1 parent 004ea19 commit 5549ac9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Clean up and rebuild `@osd/pm` ([#3570](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3570))
- [Vega] Add Filter custom label for opensearchDashboardsAddFilter ([#3640](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3640))
- [Timeline] Fix y-axis label color in dark mode ([#3698](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3698))
- [Table Visualization] Fix data table not adjusting height on the initial load ([#3816](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3816))

### 🚞 Infrastructure

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
.visTable {
display: flex;
flex-direction: column;
flex: 1 0 0;
overflow: auto;
}

.visTable__group {
padding: $euiSizeS;
margin-bottom: $euiSizeL;
Expand Down

0 comments on commit 5549ac9

Please sign in to comment.