Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
minerva
frontend
Merge requests
!127
Test/publications missing tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Test/publications missing tests
test/publications-missing-tests
into
development
Overview
2
Commits
3
Pipelines
4
Changes
6
1 unresolved thread
Hide all comments
Merged
Tadeusz Miesiąc
requested to merge
test/publications-missing-tests
into
development
1 year ago
Overview
2
Commits
3
Pipelines
4
Changes
83
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
version 1
version 1
a6edfda3
1 year ago
development (base)
and
latest version
latest version
3e3891bb
3 commits,
1 year ago
version 1
a6edfda3
2 commits,
1 year ago
Show latest version
83 files
+
2149
−
117
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
83
Search (e.g. *.vue) (Ctrl+P)
src/components/FunctionalArea/MapNavigation/MapNavigation.component.tsx
+
2
−
2
Options
import
{
MouseEvent
}
from
'
react
'
;
import
{
useAppDispatch
}
from
'
@/redux/hooks/useAppDispatch
'
;
import
{
useAppSelector
}
from
'
@/redux/hooks/useAppSelector
'
;
import
{
MAIN_MAP
}
from
'
@/redux/map/map.constants
'
;
import
{
mapModelIdSelector
,
mapOpenedMapsSelector
}
from
'
@/redux/map/map.selectors
'
;
import
{
closeMap
,
closeMapAndSetMainMapActive
,
setActiveMap
}
from
'
@/redux/map/map.slice
'
;
import
{
OppenedMap
}
from
'
@/redux/map/map.types
'
;
import
{
Button
}
from
'
@/shared/Button
'
;
import
{
Icon
}
from
'
@/shared/Icon
'
;
import
{
M
AIN_MAP
}
from
'
@/redux/map/map.constants
'
;
import
{
M
ouseEvent
}
from
'
react
'
;
import
{
twMerge
}
from
'
tailwind-merge
'
;
export
const
MapNavigation
=
():
JSX
.
Element
=>
{
Loading