Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
wattsworth
/
lumen-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8f19a114
authored
May 30, 2017
by
John Doe
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fixed bug when selecting multiple elements from different streams
parent
657e481e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
app/services/data/load_element_data.rb
app/services/data/load_element_data.rb
View file @
8f19a114
...
...
@@ -59,7 +59,8 @@ class LoadElementData
req_streams
.
each
do
|
stream
|
adapter
=
DbAdapter
.
new
(
stream
.
db
.
url
)
data_service
=
LoadStreamData
.
new
(
adapter
)
data_service
.
run
(
stream
,
@start_time
,
@end_time
,
elements
.
to_a
)
stream_elements
=
elements
.
select
{
|
e
|
e
.
db_stream_id
==
stream
.
id
}.
to_a
data_service
.
run
(
stream
,
@start_time
,
@end_time
,
stream_elements
)
if
data_service
.
success?
combined_data
.
concat
(
data_service
.
data
)
...
...
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