Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
LocoDelAssembly committed Mar 9, 2023
2 parents a305380 + 536aadf commit 8fe1742
Show file tree
Hide file tree
Showing 41 changed files with 554 additions and 669 deletions.
37 changes: 36 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,37 @@ This project <em>does not yet</em> adheres to [Semantic Versioning](https://semv

\-

## [0.31.2] - 2023-03-09

# Added

- Link from AssertedDistribution filter to BiologicalAssociations filter
- All tab to biological relationships facet [#3334]
- Biological Property to Manage controlled vocabulary terms

### Changed

- Add nomenclature code to relationships and statuses labels in Filter nomenclature [#3333]
- All Loan edit requests resolve to the edit task [#3330]

### Fixed

- Biological association filter raises [#3335]
- Mass annotator for Sources showed no options
- People filtering doesn't work on Filter nomenclature [#3332]
- Biological associations section shows incorrect results in Browse Otu [#3336]
- Error message on Combination [#3340]
- `Clone last citation` button doesn't work
- Missing asserted distributions in Browse OTU and Quick forms radial [#3337]

[#3330]: https://github.com/SpeciesFileGroup/taxonworks/issues/3330
[#3332]: https://github.com/SpeciesFileGroup/taxonworks/issues/3332
[#3333]: https://github.com/SpeciesFileGroup/taxonworks/issues/3333
[#3334]: https://github.com/SpeciesFileGroup/taxonworks/issues/3334
[#3335]: https://github.com/SpeciesFileGroup/taxonworks/issues/3335
[#3336]: https://github.com/SpeciesFileGroup/taxonworks/issues/3336
[#3337]: https://github.com/SpeciesFileGroup/taxonworks/issues/3337

## [0.31.1] - 2023-03-07

### Fixed
Expand All @@ -24,6 +55,7 @@ This project <em>does not yet</em> adheres to [Semantic Versioning](https://semv
- Short URLs not working due to Ruby 3.2 incompatibility.

### Changed

- `/combinations/<id>` redirects to `/taxon_names/<id>`

[#3328]: https://github.com/SpeciesFileGroup/taxonworks/issues/3328
Expand All @@ -32,6 +64,7 @@ This project <em>does not yet</em> adheres to [Semantic Versioning](https://semv
[#3327]: https://github.com/SpeciesFileGroup/taxonworks/issues/3327
[#3326]: https://github.com/SpeciesFileGroup/taxonworks/issues/3326
[#3325]: https://github.com/SpeciesFileGroup/taxonworks/issues/3325
[#3324]: https://github.com/SpeciesFileGroup/taxonworks/issues/3324

## [0.31.0] - 2023-03-07

Expand Down Expand Up @@ -3393,7 +3426,9 @@ This project <em>does not yet</em> adheres to [Semantic Versioning](https://semv
- Loosing input page numbers when switching tabs on New Taxon Name task

[#1532]: https://github.com/SpeciesFileGroup/taxonworks/issues/1532
[unreleased]: https://github.com/SpeciesFileGroup/taxonworks/compare/v0.31.1...development

[unreleased]: https://github.com/SpeciesFileGroup/taxonworks/compare/v0.31.2...development
[0.31.2]: https://github.com/SpeciesFileGroup/taxonworks/compare/v0.31.1...v0.31.2
[0.31.1]: https://github.com/SpeciesFileGroup/taxonworks/compare/v0.31.0...v0.31.1
[0.31.0]: https://github.com/SpeciesFileGroup/taxonworks/compare/v0.30.3...v0.31.0
[0.30.3]: https://github.com/SpeciesFileGroup/taxonworks/compare/v0.30.2...v0.30.3
Expand Down
113 changes: 0 additions & 113 deletions app/assets/javascripts/views/loan_items/_form.js.erb

This file was deleted.

132 changes: 0 additions & 132 deletions app/assets/javascripts/views/loans/_form.js.erb

This file was deleted.

64 changes: 0 additions & 64 deletions app/assets/javascripts/views/loans/_select_loan_item.js.erb

This file was deleted.

3 changes: 2 additions & 1 deletion app/controllers/loans_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def new

# GET /loans/1/edit
def edit
redirect_to edit_loan_task_path(id: params[:id])
end

# POST /loans
Expand Down Expand Up @@ -97,7 +98,7 @@ def destroy

def list
@loans = Loan.includes(:identifiers).with_project_id(sessions_current_project_id)
.order(Arel.sql("LENGTH(identifier), identifier")).references(:identifiers).page(params[:page]) #.per(10) #.per(3)
.order(Arel.sql('LENGTH(identifier), identifier')).references(:identifiers).page(params[:page])
end

def search
Expand Down
Loading

0 comments on commit 8fe1742

Please sign in to comment.