Skip to content

Commit

Permalink
Allow dataframe column content to wrap (#9949)
Browse files Browse the repository at this point in the history
* camend header-content css wrap

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
  • Loading branch information
hannahblair and gradio-pr-bot authored Nov 15, 2024
1 parent fc06fe4 commit cfb62bf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changeset/eighty-turtles-accept.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@gradio/dataframe": patch
"gradio": patch
---

fix:Allow dataframe column content to wrap
6 changes: 3 additions & 3 deletions js/dataframe/shared/Table.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1241,8 +1241,8 @@
}
th .header-content {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
overflow-wrap: break-word;
word-break: break-word;
}
</style>

0 comments on commit cfb62bf

Please sign in to comment.