Skip to content

Commit

Permalink
#2473 Changed regex to match other validation regex
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalizer committed Nov 16, 2023
1 parent a82b2bf commit e419dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/components/access/InviteUsersToProject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ limitations under the License.
import AccessService from '@/components/access/AccessService';
import MsgBoxMixin from '@/components/utils/modal/MsgBoxMixin';
const validEmail = /^[a-z0-9.]{1,64}@[a-z0-9.]{1,64}$/i;
const validEmail = /^[a-zA-Z0-9_!#$%&'*+/=?`{|}~^.-]{1,64}@[a-zA-Z0-9.-]{1,64}$/i;
const stripNames = /<([^\s<>@]+@[^\s<>@]+)>/;
export default {
name: 'InviteUsersToProject',
Expand Down

0 comments on commit e419dca

Please sign in to comment.