Skip to content

Commit

Permalink
[Discover] Prevent wrapping of time fields (#8755) (#8756)
Browse files Browse the repository at this point in the history
* Prevent wrapping of time fields



* Changeset file for PR #8755 created/updated

---------



(cherry picked from commit 056e481)

Signed-off-by: Miki <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: opensearch-changeset-bot[bot] <154024398+opensearch-changeset-bot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 30, 2024
1 parent c103d60 commit c55e27b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/8755.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fix:
- Fix time field wrapping overlap on language change in Discover table ([#8755](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/8755))
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,9 @@ $osdDocTableCellPadding: calc($euiSizeM / 2); // corresponds to DataGrid medium

.osdDocTableCell__dataField {
white-space: pre-wrap;

// stylelint-disable-next-line @osd/stylelint/no_modifying_global_selectors
.eui-textNoWrap & {
white-space: nowrap;
}
}

0 comments on commit c55e27b

Please sign in to comment.