Update index.tsx
This commit is contained in:
parent
e2b11e301e
commit
c0935c1c0d
|
@ -493,7 +493,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> {
|
||||||
const msg = this.text;
|
const msg = this.text;
|
||||||
const { start, end } = this.selection;
|
const { start, end } = this.selection;
|
||||||
const cursor = Math.max(start, end);
|
const cursor = Math.max(start, end);
|
||||||
const regexp = /([^@]+)$/;
|
const regexp = /(?!^)[^]/g;
|
||||||
let result = msg.substr(0, cursor).replace(regexp, '');
|
let result = msg.substr(0, cursor).replace(regexp, '');
|
||||||
// Remove the ! after select the canned response
|
// Remove the ! after select the canned response
|
||||||
if (trackingType === MENTIONS_TRACKING_TYPE_CANNED) {
|
if (trackingType === MENTIONS_TRACKING_TYPE_CANNED) {
|
||||||
|
|
Loading…
Reference in New Issue