- fixed displaying data in table form field;

- updated labels for fileupload fields;
This commit is contained in:
Vitalii Kiiko
2024-10-10 17:26:29 +02:00
parent f23de10ab8
commit 8fb1551880
6 changed files with 26 additions and 13 deletions

View File

@@ -5,6 +5,7 @@ import { Navigate, Outlet } from 'react-router-dom';
import AuthenticationService from '../../service/authentication-service';
const ProtectedRoute = () => {
if (!AuthenticationService.wasLoggedIn()) {
return (<Navigate to={'/login'} replace/>);
}