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
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
Merge requests
!31
makes policy resource enum consistent
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
makes policy resource enum consistent
fix/NAT-574-makes-policy-resource-consistent
into
develop
Overview
0
Commits
2
Pipelines
2
Changes
2
Merged
Mohammad Torkashvand
requested to merge
fix/NAT-574-makes-policy-resource-consistent
into
develop
9 months ago
Overview
0
Commits
2
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
develop
version 1
6806417e
9 months ago
develop (base)
and
latest version
latest version
0e7c94fb
2 commits,
9 months ago
version 1
6806417e
1 commit,
9 months ago
2 files
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
pages/maps/index.tsx
+
2
−
2
Options
@@ -15,7 +15,7 @@ const MapsPage: React.FC = () => {
useState
<
NetworkTopologyData
|
null
>
(
null
);
const
[
loading
,
setLoading
]
=
useState
<
boolean
>
(
true
);
const
[
error
,
setError
]
=
useState
<
boolean
>
(
false
);
const
TIMEOUT
=
5
000
;
const
TIMEOUT
_MS
=
30
000
;
const
config
=
useGsoConfig
();
const
{
session
}
=
useWfoSession
();
@@ -28,7 +28,7 @@ const MapsPage: React.FC = () => {
const
response
=
await
axios
.
get
<
NetworkTopologyData
>
(
config.networkTopologyApiUrl!,
{
timeout
:
TIMEOUT
,
timeout
:
TIMEOUT
_MS
,
headers
:
requestHeaders
,
}
,
);
Loading