Skip to content
Snippets Groups Projects

Resolve "Help and feedback menu"

Merged Marjolaine Bodin requested to merge 574-help_feedback into master
7 files
+ 68
73
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -2,8 +2,13 @@ import { faEnvelope } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import React from 'react';
import { Alert, Stack } from 'react-bootstrap';
import UI from '../../config/ui';
function LoginInformation() {
const getFeedbackURL = () => {
return `mailto:${UI.feedback.email}`;
};
return (
<Stack gap={3}>
<div>
@@ -20,9 +25,7 @@ function LoginInformation() {
<div>
<h5>
<FontAwesomeIcon icon={faEnvelope} style={{ marginRight: 10 }} />
<a href="mailto:dataportal-feedback@esrf.fr">
I need further assistance
</a>
<a href={getFeedbackURL()}>I need further assistance</a>
</h5>
</div>
<Alert variant="secondary">
Loading