diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-06-26 00:46:32 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-06-26 00:46:32 +0300 |
commit | 2efc5ab4e9244e0073b3404c312b868a846db77d (patch) | |
tree | e4416ec4a66df243c5eafcfad9e30ba028f42a27 | |
parent | e9d56b080423c3b8e3ba6fd6f59ae8f01158f0c5 (diff) | |
parent | fde26c21834cf5e817e5bd7b04fa1cb9d4de55f3 (diff) | |
download | wekan-2efc5ab4e9244e0073b3404c312b868a846db77d.tar.gz wekan-2efc5ab4e9244e0073b3404c312b868a846db77d.tar.bz2 wekan-2efc5ab4e9244e0073b3404c312b868a846db77d.zip |
Merge branch 'pravdomil-patch-4' into devel
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | client/components/users/userAvatar.jade | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 210b7fef..358763c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,10 @@ This release fixes the following bugs: -* [Fix typo in English translation](https://github.com/wekan/wekan/commit/c94edb6bb01933f6dae2cfb61bef0d43d7588414). +* [Fix typo in English translation](https://github.com/wekan/wekan/pull/1710); +* [Fix vertical align of user avatar initials](https://github.com/wekan/wekan/pull/1714). -Thanks to GitHub user zypA13510 for contributions. +Thanks to GitHub users pravdomil and zypA13510 for their contributions. # v1.07 2018-06-14 Wekan release diff --git a/client/components/users/userAvatar.jade b/client/components/users/userAvatar.jade index 83e2c8d0..df2ac461 100644 --- a/client/components/users/userAvatar.jade +++ b/client/components/users/userAvatar.jade @@ -17,7 +17,7 @@ template(name="userAvatar") template(name="userAvatarInitials") svg.avatar.avatar-initials(viewBox="0 0 {{viewPortWidth}} 15") - text(x="50%" y="13" text-anchor="middle")= initials + text(x="50%" y="50%" text-anchor="middle" alignment-baseline="central")= initials template(name="userPopup") .board-member-menu |