diff --git a/CHANGELOG.md b/CHANGELOG.md index 75d070e10..d5d811d50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/app/views/spaces/invite.scala.html b/app/views/spaces/invite.scala.html index c5f425e02..5000c1117 100644 --- a/app/views/spaces/invite.scala.html +++ b/app/views/spaces/invite.scala.html @@ -13,7 +13,7 @@

Invite new users

@inputText(myForm("addressList"),'class->"form-control", 'id -> "addressList", '_label -> "Email addresses (comma-separated)", 'type -> "Email", 'multiple -> "true") Please enter at least one email address.
- @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")