use underscore for italics so it doesn't collide with bold when toggling

pull/21833/head
Bruno Windels 2019-09-06 17:50:23 +02:00
parent fe482258ac
commit 48247e66be
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ export default class BasicMessageEditor extends React.Component {
toggleInlineFormat(range, "**");
break;
case "italics":
toggleInlineFormat(range, "*");
toggleInlineFormat(range, "_");
break;
case "strikethrough":
toggleInlineFormat(range, "<del>", "</del>");