mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Correct regex for hash at the start
This commit is contained in:
parent
fa193e775a
commit
2dd0165bfc
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ export default class DirectorySearchBox extends React.Component {
|
|||
if (!this.input) return false;
|
||||
|
||||
// liberal test for things that look like room aliases
|
||||
return /#.+:.+/.test(this.state.value);
|
||||
return /^#.+:.+/.test(this.state.value);
|
||||
}
|
||||
|
||||
render() {
|
||||
|
|
Loading…
Reference in a new issue