diff --git a/ui/public/index.html b/ui/public/index.html
index 95e30a725..0f51e6aca 100644
--- a/ui/public/index.html
+++ b/ui/public/index.html
@@ -1,12 +1,12 @@
-
-
-
Shibboleth IDP UI
-
+
+
+
+
diff --git a/ui/src/app/App.js b/ui/src/app/App.js
index b7cc87f0d..36d67f773 100644
--- a/ui/src/app/App.js
+++ b/ui/src/app/App.js
@@ -43,7 +43,7 @@ function App() {
},
response: async ({response}) => {
if (response.type === "opaqueredirect") {
- setShowTimeout(true);
+ //setShowTimeout(true);
}
return response;
diff --git a/ui/src/app/form/component/InfoIcon.js b/ui/src/app/form/component/InfoIcon.js
index 5e0ba1b0f..989428435 100644
--- a/ui/src/app/form/component/InfoIcon.js
+++ b/ui/src/app/form/component/InfoIcon.js
@@ -3,16 +3,22 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faInfoCircle } from '@fortawesome/free-solid-svg-icons';
import Popover from 'react-bootstrap/Popover';
import OverlayTrigger from 'react-bootstrap/OverlayTrigger';
+import Button from 'react-bootstrap/Button';
import Translate from '../../i18n/components/translate';
+import { useTranslator } from '../../i18n/hooks';
export function InfoIcon ({ value, placement='left', ...props }) {
+ const translate = useTranslator();
return(
-
- )}>
-
+ )}
+ aria-label={translate('tooltip.instruction')}>
+
);
}
\ No newline at end of file