Skip to content

Commit

Permalink
fix sidebar scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
desheikh committed Apr 29, 2024
1 parent 864f75a commit 4b79776
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 1.4.1 - 2024-04-28
### Fixed
- Fix Sidebar scroll

## 1.4.0 - 2024-04-02
### Changed
- Production ready release of the outbox consumer
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
eventsimple (1.4.0)
eventsimple (1.4.1)
dry-struct (~> 1.6)
dry-types (~> 1.7)
pg (~> 1.4)
Expand Down
2 changes: 1 addition & 1 deletion app/views/eventsimple/shared/_sidebar.html.erb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Sidebar Nav Start -->
<nav class="d-flex flex-column flex-shrink-0 p-3 text-white bg-dark">
<nav class="d-flex flex-column flex-shrink-0 p-3 text-white bg-dark" style="overflow-y: auto;">
<%= link_to root_path, class: 'd-flex align-items-center mb-3 mb-md-0 me-md-auto text-white text-decoration-none' do %>
<span class="fs-4">Eventsimple</span>
<% end %>
Expand Down
2 changes: 1 addition & 1 deletion lib/eventsimple/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Eventsimple
VERSION = '1.4.0'
VERSION = '1.4.1'
end

0 comments on commit 4b79776

Please sign in to comment.