Skip to content

Commit

Permalink
Merge pull request #468 from OSC/fix_cosmetic_defects
Browse files Browse the repository at this point in the history
Fix cosmetic defects
  • Loading branch information
ericfranz authored Apr 4, 2020
2 parents 270c5a6 + 426ba9b commit 576f2bf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.7.9] - 2020-04-03
### Fixed
- remove deprecated Dashboard version string from footer
[#467](https://github.com/OSC/ondemand/issues/467)
- fix hiding the joy ride script which is meant to be hidden in the DOM on the
bottom of the page, not visible [#466](https://github.com/OSC/ondemand/issues/466)

## [1.7.8] - 2020-04-03
### Fixed
- fix use of ActiveSupport::Inflector#parameterize in Rails 5.1+ [#71](https://github.com/OSC/osc_machete_rails/pull/71) and [commit cbb8b19](https://github.com/OSC/osc_machete_rails/commit/cbb8b1949ac971b8f34877a64c3d86c9f33a5fb5)
Expand Down Expand Up @@ -372,7 +379,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- From 1.3.7 - 1.4.2 updated app versions


[Unreleased]: https://github.com/OSC/ondemand/compare/v1.7.8...HEAD
[Unreleased]: https://github.com/OSC/ondemand/compare/v1.7.9...HEAD
[1.7.9]: https://github.com/OSC/ondemand/compare/v1.7.8...v1.7.9
[1.7.8]: https://github.com/OSC/ondemand/compare/v1.7.7...v1.7.8
[1.7.7]: https://github.com/OSC/ondemand/compare/v1.7.6...v1.7.7
[1.7.6]: https://github.com/OSC/ondemand/compare/v1.7.5...v1.7.6
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/app/views/layouts/_footer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<% end %>
</div>
<div class="col-md-6 col-sm-6">
<p class="pull-right">OnDemand version: <%= Configuration.ood_version %> | Dashboard version: <%= Configuration.app_version %></p>
<p class="pull-right">OnDemand version: <%= Configuration.ood_version %></p>
</div>
</div>
</div><!-- /.container -->
Expand Down
4 changes: 2 additions & 2 deletions apps/myjobs/app/views/workflows/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
</div>

<!-- Joyride steps -->
<ol id="joyride" style="visibility: none;" data-joyride>
<ol id="joyride" style="display: none;" data-joyride>
<li data-id="new_job_button">
<ol>
<h4>
Expand Down Expand Up @@ -223,4 +223,4 @@
</p>
</li>
</ol>
</div>
</div>

0 comments on commit 576f2bf

Please sign in to comment.