Skip to content

Commit

Permalink
Merge pull request #15 from OrigenStudio/develop-0.0.x
Browse files Browse the repository at this point in the history
v0.0.6
  • Loading branch information
ochicf authored Aug 29, 2018
2 parents c521c4e + 188851d commit d898b1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/modules/components/Upload.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Upload extends PureComponent {
if (isEmpty(errors)) {
this.props.updateCurrentValues({
[this.props.name]: this.enableMultiple()
? [...this.state.value, ...files]
? [...this.getValue(), ...files]
: files[0],
});
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'origenstudio:vulcan-files',
version: '0.0.5',
version: '0.0.6',
summary: 'Provides Vulcan with the capability of uploading files to server using Meteor-Files',
git: 'https://github.com/OrigenStudio/vulcan-files',
documentation: 'README.md'
Expand Down

0 comments on commit d898b1b

Please sign in to comment.