diff --git a/opentech/settings/base.py b/opentech/settings/base.py
index 6b0784a49dcd121000747f996f8666fc567c9649..89bde4c0b099050161bd0387338c664cbc7f3b3f 100644
--- a/opentech/settings/base.py
+++ b/opentech/settings/base.py
@@ -274,14 +274,15 @@ WAGTAILIMAGES_FEATURE_DETECTION_ENABLED = False
 WAGTAILADMIN_RICH_TEXT_EDITORS = {
     'default': {
         'WIDGET': 'wagtail.admin.rich_text.DraftailRichTextArea',
-        'OPTIONS': {
-            'features': [
-                'bold', 'italic',
-                'h3', 'h4', 'h5',
-                'ol', 'ul',
-                'link'
-            ]
-        }
+        # fixed in wagtail 2.1: https://github.com/wagtail/wagtail/commit/09f8a4f38a95f2760f38ab2f142443df93b5d8c6
+        # 'OPTIONS': {
+        #     'features': [
+        #         'bold', 'italic',
+        #         'h3', 'h4', 'h5',
+        #         'ol', 'ul',
+        #         'link'
+        #     ]
+        # }
     },
 }