Skip to content

Commit

Permalink
fix(discover): truncate height of table cell (#7178) (#8257)
Browse files Browse the repository at this point in the history
* fix(discover): truncate height of table cell



* Changeset file for PR #7178 created/updated

---------



(cherry picked from commit 21f4218)

Signed-off-by: Joshua Li <[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 Sep 21, 2024
1 parent c0fc91e commit 4b5d369
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/7178.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fix:
- Truncate height of table cell in legacy discover ([#7178](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/7178))
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const TableCellUI = ({
data-test-subj="docTableField"
className="osdDocTableCell eui-textBreakAll eui-textBreakWord"
>
<div className="osdDocTable__limitedHeight">{content}</div>
<div className="truncate-by-height">{content}</div>
</td>
);
};
Expand Down

0 comments on commit 4b5d369

Please sign in to comment.