1
0
Fork 0
mirror of synced 2024-09-02 10:41:09 +12:00

Allowed typed user query to be passed into invite user form.

This commit is contained in:
Conor Webb 2024-01-26 11:02:53 +00:00
parent fa36701f0f
commit 89111a5b0d

View file

@ -392,6 +392,10 @@
} }
const openInviteFlow = () => { const openInviteFlow = () => {
// prevent email from getting overwritten if changes are made
if (!email) {
email = query
}
$licensing.userLimitReached $licensing.userLimitReached
? userLimitReachedModal.show() ? userLimitReachedModal.show()
: (invitingFlow = true) : (invitingFlow = true)