Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
core
Commits
af059208
There was a problem fetching the pipeline mini graph.
Commit
af059208
authored
7 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
submodel changed into "submaps"
parent
195fc392
No related branches found
No related tags found
1 merge request
!240
Resolve "Main view: 'in submap' instead of 'in submodel'"
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
+4
-4
4 additions, 4 deletions
frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
with
4 additions
and
4 deletions
frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
+
4
−
4
View file @
af059208
...
...
@@ -421,12 +421,12 @@ GuiUtils.prototype.createReactionElement = function (params) {
if
(
showTitle
)
{
div
.
appendChild
(
self
.
createLabel
(
"
Reaction:
"
+
reaction
.
getReactionId
()));
if
(
reaction
.
getModelId
()
!==
self
.
getMap
().
getId
())
{
div
.
appendChild
(
self
.
createSubMapLink
(
"
In subm
odel
:
"
,
reaction
.
getModelId
()));
div
.
appendChild
(
self
.
createSubMapLink
(
"
In subm
ap
:
"
,
reaction
.
getModelId
()));
}
}
if
(
reaction
.
getLinkedSubmodelId
()
!==
null
&&
reaction
.
getLinkedSubmodelId
()
!==
undefined
)
{
div
.
appendChild
(
self
.
createSubMapLink
(
"
Associated subm
odel
:
"
,
reaction
.
getLinkedSubmodelId
()));
div
.
appendChild
(
self
.
createSubMapLink
(
"
Associated subm
ap
:
"
,
reaction
.
getLinkedSubmodelId
()));
}
if
(
showTitle
)
{
div
.
appendChild
(
self
.
createNewLine
());
...
...
@@ -472,11 +472,11 @@ GuiUtils.prototype.createAliasElement = function (params) {
div
.
appendChild
(
this
.
createParamLine
(
alias
.
getType
()
+
"
:
"
,
alias
.
getName
()));
if
(
alias
.
getModelId
()
!==
self
.
getMap
().
getId
())
{
div
.
appendChild
(
self
.
createSubMapLink
(
"
In subm
odel
:
"
,
alias
.
getModelId
()));
div
.
appendChild
(
self
.
createSubMapLink
(
"
In subm
ap
:
"
,
alias
.
getModelId
()));
}
}
if
(
alias
.
getLinkedSubmodelId
()
!==
null
&&
alias
.
getLinkedSubmodelId
()
!==
undefined
)
{
div
.
appendChild
(
self
.
createSubMapLink
(
"
Associated subm
odel
:
"
,
alias
.
getLinkedSubmodelId
()));
div
.
appendChild
(
self
.
createSubMapLink
(
"
Associated subm
ap
:
"
,
alias
.
getLinkedSubmodelId
()));
}
if
(
showTitle
)
{
div
.
appendChild
(
self
.
createNewLine
(
3
));
...
...
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