Merge lp:~maxiberta/canonical-identity-provider/ssh-key-break-all into lp:canonical-identity-provider/release

Proposed by Maximiliano Bertacchini
Status: Merged
Approved by: Maximiliano Bertacchini
Approved revision: no longer in the source branch.
Merge reported by: Otto Co-Pilot
Merged at revision: not available
Proposed branch: lp:~maxiberta/canonical-identity-provider/ssh-key-break-all
Merge into: lp:canonical-identity-provider/release
Diff against target: 12 lines (+1/-1)
1 file modified
src/webui/templates/account/ssh_keys.html (+1/-1)
To merge this branch: bzr merge lp:~maxiberta/canonical-identity-provider/ssh-key-break-all
Reviewer Review Type Date Requested Status
Daniel Manrique (community) Approve
Review via email: mp+379171@code.launchpad.net

Commit message

Prevent extraneous line breaks while rendering SSH keys.

To post a comment you must log in.
Revision history for this message
Daniel Manrique (roadmr) wrote :

+1 yay

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/webui/templates/account/ssh_keys.html'
2--- src/webui/templates/account/ssh_keys.html 2020-01-31 20:50:37 +0000
3+++ src/webui/templates/account/ssh_keys.html 2020-02-13 21:10:22 +0000
4@@ -31,7 +31,7 @@
5 <dt>Type</dt>
6 <dd>{{ key_info.type }}</dd>
7 <dt>Text</dt>
8- <dd><code style="word-break: keep-all;">{{ key_info.text }}</code></dd>
9+ <dd><code style="word-break: break-all;">{{ key_info.text }}</code></dd>
10 </dl>
11 </section>
12 </li>