Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ registration or heartbeat to Clowder that will restrict use of that extractor to
- Previewer source URL in the documentation to point to the Clowder GitHub repo. [#395](https://github.com/clowder-framework/clowder/issues/395)
- Added a citation.cff file

## Fixed
### Fixed
- Updated lastModifiesDate when updating file or metadata to a dataset, added lastModified to UI [386](https://github.com/clowder-framework/clowder/issues/386)
- Disabled button while create dataset ajax call is still going on [#311](https://github.com/clowder-framework/clowder/issues/311)
- Changed default to 'Viewer' while inviting users to new spaces [#375](https://github.com/clowder-framework/clowder/issues/375)
- Fixed bug where complex JSON metadata objects using arrays were not being indexed properly for search.


Expand Down
2 changes: 1 addition & 1 deletion app/views/spaces/invite.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h3>Invite new users</h3>
@inputText(myForm("addressList"),'class->"form-control", 'id -> "addressList", '_label -> "Email addresses (comma-separated)", 'type -> "Email", 'multiple -> "true")
<span class="error hiddencomplete" id="addresserror"> Please enter at least one email address.<br></span>

@select(myForm("role"), options(roleList), 'id -> "role_list", '_label -> "Role", 'placeholder -> "Select a default role for all recipients")
@select(myForm("role"), options(roleList.reverse), 'id -> "role_list", '_label -> "Role", 'placeholder -> "Select a default role for all recipients")
@textarea(myForm("message"), 'class->"form-control", '_label -> "Message")


Expand Down