We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceed43e commit e6d8631Copy full SHA for e6d8631
services/static-webserver/client/source/class/osparc/conversation/AddMessage.js
@@ -83,13 +83,7 @@ qx.Class.define("osparc.conversation.AddMessage", {
83
}
84
case "comment-field":
85
control = new osparc.editor.MarkdownEditor();
86
- control.addListener("keydown", e => {
87
- if (e.isCtrlPressed() && e.getKeyIdentifier() === "Enter") {
88
- this.addComment();
89
- e.stopPropagation();
90
- e.preventDefault();
91
- }
92
- }, this);
+ control.addListener("textChanged", () => this.__addCommentPressed(), this);
93
control.setCompact(true);
94
control.getChildControl("text-area").getContentElement().setStyles({
95
"border-top-right-radius": "0px", // no roundness there to match the arrow button
0 commit comments