Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[Console] Fix table trailing backslash#30911
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
nicolas-grekas left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
(can you confirm the issue doesn't exist on 3.4?)
nicolas-grekas commentedApr 6, 2019
Can you please have a look at#30852? |
maidmaid commentedApr 6, 2019
4.2 because |
maidmaid commentedApr 6, 2019
@nicolas-grekas About#30852, it's 2 different problems IMO : this PR relates the trailing |
fabpot commentedApr 6, 2019
Thank you@maidmaid. |
This PR was merged into the 4.2 branch.Discussion----------[Console] Fix table trailing backslash| Q | A| ------------- | ---| Branch? | 4.2| Bug fix? | yes| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets |#30725| License | MIT| Doc PR | /```php(new Table($output)) ->setColumnMaxWidth(0, 5) ->setRows([['1234\6']]) ->render();;```before:```+-------+| 1234<fg=default;bg=default> || 6 |+-------+```after:```+-------+| 1234\ || 6 |+-------+```#EUFOSSACommits-------48f020f Fix table trailing backslash
before:
after:
#EUFOSSA