Skip to content
Snippets Groups Projects
Commit 56a98a86 authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 2.9.

parents 10fda140 e43e887a
No related branches found
No related tags found
No related merge requests found
Pipeline #89632 passed
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [2.9] - 2024-10-10
- Fix duplicate username in the homepage
## [2.8] - 2024-10-10 ## [2.8] - 2024-10-10
- Add the newest GUI - Add the newest GUI
......
import { EuiPageHeader, EuiSpacer } from '@elastic/eui'; import { WfoStartPage } from '@orchestrator-ui/orchestrator-ui-components';
import {
WfoStartPage,
useWfoSession,
} from '@orchestrator-ui/orchestrator-ui-components';
import { useTranslations } from 'next-intl';
import React from 'react'; import React from 'react';
export function Index() { export function Index() {
const { session } = useWfoSession(); return <WfoStartPage />;
const t = useTranslations('main');
const username = session?.user?.name || '';
return (
<>
<EuiPageHeader pageTitle={`${t('welcome')} ${username}`} />
<EuiSpacer />
<WfoStartPage />
</>
);
} }
export default Index; export default Index;
...@@ -3,7 +3,7 @@ from setuptools import setup ...@@ -3,7 +3,7 @@ from setuptools import setup
setup( setup(
name="geant-service-orchestrator-gui", name="geant-service-orchestrator-gui",
py_modules=[], py_modules=[],
version="2.8", version="2.9",
author="GÉANT Orchestration and Automation Team", author="GÉANT Orchestration and Automation Team",
author_email="goat@geant.org", author_email="goat@geant.org",
description="GÉANT Service Orchestrator GUI dummy package", description="GÉANT Service Orchestrator GUI dummy package",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment