diff --git a/client/coral-embed-stream/src/tabs/configure/components/QuestionBoxBuilder.css b/client/coral-embed-stream/src/tabs/configure/components/QuestionBoxBuilder.css index c3e0b896e..8dc6091fa 100644 --- a/client/coral-embed-stream/src/tabs/configure/components/QuestionBoxBuilder.css +++ b/client/coral-embed-stream/src/tabs/configure/components/QuestionBoxBuilder.css @@ -30,7 +30,6 @@ margin-right: 10px; position: relative; border: solid 2px #F0F0F0; - transition: border 0.3s cubic-bezier(.4,0,.2,1); outline: 0; &:hover { diff --git a/client/coral-framework/components/MarkdownEditor.js b/client/coral-framework/components/MarkdownEditor.js index 65f603b0c..451a06019 100644 --- a/client/coral-framework/components/MarkdownEditor.js +++ b/client/coral-framework/components/MarkdownEditor.js @@ -107,6 +107,11 @@ export default class MarkdownEditor extends Component { ...config, element: this.textarea, }); + + // Don't trap the key, to stay accessible. + this.editor.codemirror.options.extraKeys['Tab'] = false; + this.editor.codemirror.options.extraKeys['Shift-Tab'] = false; + this.editor.codemirror.on('change', this.onChange); }