mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
use underscore for italics so it doesn't collide with bold when toggling
This commit is contained in:
parent
fe482258ac
commit
48247e66be
1 changed files with 1 additions and 1 deletions
|
@ -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>");
|
||||
|
|
Loading…
Reference in a new issue