mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
also allow commands to be pill-candidates
This commit is contained in:
parent
ca0130db02
commit
77a61519ef
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ export default class SendMessageComposer extends React.Component {
|
|||
// be extra resilient when somehow the AutocompleteWrapperModel or
|
||||
// CommandPartCreator fails to insert a command part, so we don't send
|
||||
// a command as a message
|
||||
if (firstPart.type === "plain" && firstPart.text.startsWith("/")) {
|
||||
if (firstPart.text.startsWith("/") && (firstPart.type === "plain" || firstPart.type === "pill-candidate")) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue