Skip to content

Commit

Permalink
Merge branch 'release/v0.2.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
bopm committed Aug 26, 2024
2 parents e49a5b4 + f463d7f commit e19fd10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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:
turbo_material (0.2.9)
turbo_material (0.2.10)
importmap-rails (~> 2.0.1)
rails (~> 7.1, >= 7.1.2)
stimulus-rails (~> 1.3)
Expand Down
2 changes: 1 addition & 1 deletion app/views/components/_data_table.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<%= form.hidden_field key, value: params[key] %>
<%- end -%>
<%= material_select name: 'per_page', form: form, id: 'per-page', options: per_page_options,
value: pagy.items, outlined: true, additional_classes: 'mdc-data-table__pagination-rows-per-page-select mdc-data-table__pagination-rows-per-page-select--outlined' %>
value: pagy.respond_to?(:items) ? pagy.items : pagy.limit , outlined: true, additional_classes: 'mdc-data-table__pagination-rows-per-page-select mdc-data-table__pagination-rows-per-page-select--outlined' %>
<%- end -%>

<div class="mdc-data-table__pagination-navigation">
Expand Down
2 changes: 1 addition & 1 deletion lib/turbo_material/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module TurboMaterial
VERSION = "0.2.9"
VERSION = "0.2.10"
end

0 comments on commit e19fd10

Please sign in to comment.