Skip to content

Commit a41dc4a

Browse files
authored
Merge pull request #275 from clowder-framework/bugfix/274-cannot-add-dataset-to-space
Bugfix/274 cannot add dataset to space
2 parents fbffafa + 6ed056a commit a41dc4a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
## Unreleased
88

99
### Fixed
10+
- Can add dataset to spaces - fixed error when no spaces would load. [#274](https://github.com/clowder-framework/clowder/issues/274)
1011
- Typos "success" when returning status from API and "occurred" when logging to console.
1112

1213
### Added

app/views/spaces/spaceSelect.scala.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
allowClear: true,
2828
ajax: {
2929
url: function(params) {
30-
return jsRoutes.api.Spaces.listCanEdit(params.term, null, 5).url;
30+
return jsRoutes.api.Spaces.listCanEdit(params.term, null, null, 5).url;
3131
},
3232
data: function(params) {
3333
return { title: params.term };

0 commit comments

Comments
 (0)