mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-22 23:11:12 +02:00
Remove constraint on groups being local, remove logging
This commit is contained in:
parent
7be5e685f7
commit
02e7287123
@ -64,8 +64,7 @@ module.exports = React.createClass({
|
||||
},
|
||||
|
||||
validateGroupId: function(groupId) {
|
||||
const localDomain = this.context.matrixClient.getDomain();
|
||||
if (!GROUP_ID_REGEX.test(groupId) || !groupId.endsWith(localDomain)) {
|
||||
if (!GROUP_ID_REGEX.test(groupId)) {
|
||||
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||
Modal.createTrackedDialog('Invalid related group ID', '', ErrorDialog, {
|
||||
title: _t('Invalid group ID'),
|
||||
@ -108,7 +107,6 @@ module.exports = React.createClass({
|
||||
render: function() {
|
||||
const localDomain = this.context.matrixClient.getDomain();
|
||||
const EditableItemList = sdk.getComponent('elements.EditableItemList');
|
||||
console.info(this.state.newGroupsList);
|
||||
return (<div>
|
||||
<h3>{ _t('Related Groups') }</h3>
|
||||
<EditableItemList
|
||||
|
Loading…
x
Reference in New Issue
Block a user