Merge remote-tracking branch 'upstream/pull/5111'
This commit is contained in:
commit
dd1c07f609
6 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
<turbo-frame id="pagination" target="_top">
|
||||
<turbo-frame id="pagination" target="_top" data-turbo="false">
|
||||
<table class="table table-striped" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<turbo-frame id="pagination" target="_top">
|
||||
<turbo-frame id="pagination" target="_top" data-turbo="false">
|
||||
<h4><%= t ".recent_entries" %></h4>
|
||||
|
||||
<%= render @entries %>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<% end %>
|
||||
<% if newer_id -%>
|
||||
<li class="page-item d-flex">
|
||||
<%= link_to newer_link_content, @params.merge(:before => nil, :after => newer_id), :class => link_class, :data => { "turbo-frame" => "pagination", "turbo-action" => "advance" } %>
|
||||
<%= link_to newer_link_content, @params.merge(:before => nil, :after => newer_id), :class => link_class, :data => { "turbo" => true, "turbo-frame" => "pagination", "turbo-action" => "advance" } %>
|
||||
</li>
|
||||
<% else -%>
|
||||
<li class="page-item d-flex disabled">
|
||||
|
@ -21,7 +21,7 @@
|
|||
<% end %>
|
||||
<% if older_id -%>
|
||||
<li class="page-item d-flex">
|
||||
<%= link_to older_link_content, @params.merge(:before => older_id, :after => nil), :class => link_class, :data => { "turbo-frame" => "pagination", "turbo-action" => "advance" } %>
|
||||
<%= link_to older_link_content, @params.merge(:before => older_id, :after => nil), :class => link_class, :data => { "turbo" => true, "turbo-frame" => "pagination", "turbo-action" => "advance" } %>
|
||||
</li>
|
||||
<% else -%>
|
||||
<li class="page-item d-flex disabled">
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<turbo-frame id="pagination" target="_top">
|
||||
<turbo-frame id="pagination" target="_top" data-turbo="false">
|
||||
<%= render "shared/pagination",
|
||||
:newer_key => "traces.page.newer",
|
||||
:older_key => "traces.page.older",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<turbo-frame id="pagination" target="_top">
|
||||
<turbo-frame id="pagination" target="_top" data-turbo="false">
|
||||
<table id="block_list" class="table table-borderless table-striped table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<turbo-frame id="pagination" target="_top">
|
||||
<turbo-frame id="pagination" target="_top" data-turbo="false">
|
||||
<%= form_tag do %>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue