Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GÉANT Service Orchestrator GUI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator GUI
Commits
56a98a86
Commit
56a98a86
authored
7 months ago
by
geant-release-service
Browse files
Options
Downloads
Plain Diff
Finished release 2.9.
parents
10fda140
e43e887a
No related branches found
No related tags found
No related merge requests found
Pipeline
#89632
passed
7 months ago
Stage: tsc_lint_and_test
Stage: build
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Changelog.md
+4
-0
4 additions, 0 deletions
Changelog.md
pages/index.tsx
+2
-17
2 additions, 17 deletions
pages/index.tsx
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
7 additions
and
18 deletions
Changelog.md
+
4
−
0
View file @
56a98a86
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
pages/index.tsx
+
2
−
17
View file @
56a98a86
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
;
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
56a98a86
...
@@ -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
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment