|
@@ -511,11 +511,7 @@ class InviteContactsForm extends AbstractAddPeopleDialog<Props, State> {
|
511
|
511
|
const supportString = t('inlineDialogFailure.supportMsg');
|
512
|
512
|
const supportLink = interfaceConfig.SUPPORT_URL;
|
513
|
513
|
|
514
|
|
- if (!supportLink) {
|
515
|
|
- return null;
|
516
|
|
- }
|
517
|
|
-
|
518
|
|
- const supportLinkContent = (
|
|
514
|
+ const supportLinkContent = supportLink ? (
|
519
|
515
|
<span>
|
520
|
516
|
<span>
|
521
|
517
|
{ supportString.padEnd(supportString.length + 1) }
|
|
@@ -524,13 +520,14 @@ class InviteContactsForm extends AbstractAddPeopleDialog<Props, State> {
|
524
|
520
|
<a
|
525
|
521
|
aria-label = { supportLink }
|
526
|
522
|
href = { supportLink }
|
527
|
|
- rel = 'noopener noreferrer'>
|
|
523
|
+ rel = 'noopener noreferrer'
|
|
524
|
+ target = '_blank'>
|
528
|
525
|
{ t('inlineDialogFailure.support') }
|
529
|
526
|
</a>
|
530
|
527
|
</span>
|
531
|
528
|
<span>.</span>
|
532
|
529
|
</span>
|
533
|
|
- );
|
|
530
|
+ ) : null;
|
534
|
531
|
|
535
|
532
|
return (
|
536
|
533
|
<div className = 'modal-dialog-form-error'>
|