fabfuel / ecs-deploy

Powerful CLI tool to simplify Amazon ECS deployments, rollbacks & scaling

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect line wrap in Chrome and Firefox in deploy_task_definition

F1ashhimself opened this issue · comments

It looks like Chrome (97.0.4692.71) and Firefox have incorrect line wrapping for such lines like on screenshot and it tries to wrap line right before last symbol. And it is reproducible with different window resolutions.
Screenshot 2022-01-11 at 19 00 30
But in Safari all looks good.

It can be avoided if we will add space or new line between words and dots here

click.secho(title, nl=False)
like

click.secho(f'{title} ', nl=False)

Hi Max, thats an interesting issue! 🙂
May I ask what tool you're using in the browser which causes this?

Best
Fabian

@fabfuel sorry for late answer, I think this is our company internal tool for deployment. But there are no special css for wrapping this.

No problem. I already added a line break before the "waiting dots" (289c51b). It's in the develop branch and will be part of the next release.

Best
Fabian

Thank you very much.