You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR was merged into the 4.4 branch.
Discussion
----------
Fix table header seperator wrapping
| Q | A
| ------------- | ---
| Branch? | 5.4
| Bug fix? | yes
| New feature? | no
| Deprecations? | no
| Tickets | Fix#45520
| License | MIT
| Doc PR |
Before PR, a new seperator is added foreach split line in header
```php
$table = new Table();
$table
->setHeaders([
[
'Publication',
'Very long header with a lot of information',
],
])
->setRows([
[
'1954',
'The Lord of the Rings, by J.R.R. Tolkien',
],
])
->setColumnMaxWidth(1, 30);
```
Before PR:

After PR

(Fabbot cannot be green (break unit tests))
Commits
-------
ebf38b1 [Console] Header with column max width is now well wrap with separator
0 commit comments