From b24212d70ab8e8a0731655745831e214a2216ff9 Mon Sep 17 00:00:00 2001 From: nztqa Date: Fri, 28 Jul 2017 11:07:28 +0900 Subject: [PATCH 1/2] Fix keyframe property Support for IE11 https://github.com/wekan/wekan/pull/646 --- client/components/main/layouts.styl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/components/main/layouts.styl b/client/components/main/layouts.styl index ee87a5f87..734a5e831 100644 --- a/client/components/main/layouts.styl +++ b/client/components/main/layouts.styl @@ -368,7 +368,8 @@ a @keyframes flexGrowIn from - flex-basis: 0 + // Support IE11 https://github.com/wekan/wekan/pull/646 + height: 100% @media screen and (max-width: 800px) #content From 979a2025ef899d4920fb29b6e1d43977e77f304c Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 28 Jul 2017 14:12:27 +0300 Subject: [PATCH 2/2] Fix showing card activity history in IE11. Thanks to nztqa ! Closes #646 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78eb162f4..2d2a250da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Upcoming Wekan release + +This release fixes the following bugs: + +* [Fix showing card activity history in IE11](https://github.com/wekan/wekan/pull/1152). + +Thanks to GitHub user nztqa for contributions. + # v0.30 2017-07-27 Wekan release SECURITY ISSUE [Files accessible without authentication](https://github.com/wekan/wekan/issues/1105)