-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature/paginate-survey-responses #183
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking good! couple minor changes I'd like to see before merging.
Gemfile
Outdated
@@ -10,6 +10,7 @@ gem "importmap-rails" | |||
gem "jbuilder", '~>2.12' | |||
gem 'jsonb_accessor', '~> 1.4' | |||
gem 'mailgun-ruby', '~>1.2.14' | |||
gem 'pagy' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please pin this to the major version, i.e.:
gem 'pagy', '~>9'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
<% end %> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please delete the blank lines at the end of the file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@@ -14,6 +14,9 @@ | |||
<meta name="apple-itunes-app" content="app-id=329380089"> | |||
<%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %> | |||
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> | |||
<%= stylesheet_link_tag 'pagy.tailwind', media: 'all' %> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are these necessary since you included pagy.tailwind
in the application.tailwind.css file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When I removed it, the pagy navigation bar was displayed without any style. But I just tried removing the import from application.tailwind.css and kept the pagy.tailwind link_tag application.html, and it works now.
c9f3df3
to
5c77e33
Compare
No description provided.