Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sebastian Gottschalk
bmdl-expert-modeler
Commits
f7fd2cbc
Commit
f7fd2cbc
authored
Nov 09, 2021
by
Alexander Philipp Nowosad
Browse files
Fix recognize multiple elements as filled out
parent
d4481fde
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/app/development-process-registry/running-process/running-method.ts
View file @
f7fd2cbc
...
...
@@ -242,7 +242,10 @@ export class RunningMethod implements RunningMethodInfo, DatabaseModelPart {
return
true
;
}
if
(
this
.
outputArtifacts
!=
null
)
{
return
this
.
outputArtifacts
.
length
===
outputArtifacts
.
length
;
return
(
this
.
outputArtifacts
.
length
===
outputArtifacts
.
reduce
((
acc
,
summay
)
=>
acc
+
summay
.
elements
.
length
,
0
)
);
}
return
false
;
}
...
...
@@ -261,7 +264,7 @@ export class RunningMethod implements RunningMethodInfo, DatabaseModelPart {
*
* @param commentId the id of the comment
*/
getComment
(
commentId
:
string
)
{
getComment
(
commentId
:
string
)
:
Comment
{
return
this
.
comments
.
find
((
comment
)
=>
comment
.
id
===
commentId
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment