File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010### Fixed
1111
1212- Fixed issues with initial flicker in ` TextArea ` rendering https://github.com/Textualize/textual/issues/5841
13-
14- ## Unreleased
13+ - Fixed issue with workers that have large parameter lists breaking dev tools
1514
1615### Added
1716
Original file line number Diff line number Diff line change @@ -164,7 +164,9 @@ def __init__(
164164 self ._work = work
165165 self .name = name
166166 self .group = group
167- self .description = description
167+ self .description = (
168+ description if len (description ) <= 1000 else description [:1000 ] + "..."
169+ )
168170 self .exit_on_error = exit_on_error
169171 self .cancelled_event : Event = Event ()
170172 """A threading event set when the worker is cancelled."""
You can’t perform that action at this time.
0 commit comments