Skip to content

Commit

Permalink
bug: fix the zip upload issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cllde8 committed Jan 16, 2024
1 parent 078e1f5 commit 7e003e5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
1.1.0 - 2023-10-30
1.1.1 - 2024-01-16
===================
* bug: fix the zip upload issue

1.1.0 - 2024-01-15
===================
* “Dataset Excel” improvement - more information is provided in the `Description` sheet. See the documentation: [https://www.chemotion.net/docs/labimotion/guides/user/datasets/download].

1.0.18 - 2023-10-30
===================
* Initial version
* Generic Designer
Expand Down
2 changes: 1 addition & 1 deletion lib/labimotion/libs/nmr_mapper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def self.process_ds(id, current_user = {})
elsif result[:metadata] == nil
Labimotion::ConState::NONE
else
data = process(att, id, content)
data = process(att, id, result[:metadata])
generate_ds(id, att.attachable_id, data, current_user)
Labimotion::ConState::COMPLETED
end
Expand Down
2 changes: 1 addition & 1 deletion lib/labimotion/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
## Labimotion Version
module Labimotion
IS_RAILS5 = false
VERSION = '1.1.0'
VERSION = '1.1.1'
end

0 comments on commit 7e003e5

Please sign in to comment.