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
!361
feat(layer-image): add zIndex editing for layer image objects
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat(layer-image): add zIndex editing for layer image objects
feat/MIN-91-editing-layer-z-index
into
development
Overview
0
Commits
23
Pipelines
4
Changes
14
Merged
Miłosz Grocholewski
requested to merge
feat/MIN-91-editing-layer-z-index
into
development
2 months ago
Overview
0
Commits
23
Pipelines
4
Changes
14
Expand
Closes
MIN-91
0
0
Merge request reports
Compare
development
version 2
023cc449
1 month ago
version 1
023cc449
2 months ago
development (base)
and
version 1
latest version
71ee564c
23 commits,
1 month ago
version 2
023cc449
22 commits,
1 month ago
version 1
023cc449
1 commit,
2 months ago
14 files
+
191
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
src/components/FunctionalArea/Modal/LayerImageObjectModal/LayerImageObjectEditFactoryModal.component.test.tsx
+
1
−
1
Options
@@ -140,7 +140,7 @@ describe('LayerImageObjectEditFactoryModal - component', () => {
};
const
getGlyphDataMock
=
jest
.
fn
(()
=>
glyphData
);
jest
.
spyOn
(
layerObjectFeature
,
'
get
'
).
mockImplementation
(
key
=>
{
if
(
key
===
'
setGlyph
'
)
return
():
void
=>
{};
if
(
key
===
'
update
'
)
return
():
void
=>
{};
if
(
key
===
'
getGlyphData
'
)
return
getGlyphDataMock
;
return
undefined
;
});
Loading