lib/karafka/web/pro/ui/views/topics/config.erb in karafka-web-0.9.1 vs lib/karafka/web/pro/ui/views/topics/config.erb in karafka-web-0.10.0.beta1

- old
+ new

@@ -1,29 +1,25 @@ -<%== view_title(@topic.topic_name, hr: false) %> +<% view_title @topic.topic_name %> <%== partial 'topics/tabs' %> -<div class="container mb-5"> - <div class="row"> - <div class="col-lg-12 table-responsive"> - <table class="processes bg-white table table-hover table-bordered table-striped"> - <thead> - <tr class="align-middle"> - <th><%== sort_link(:name) %></th> - <th><%== sort_link(:value) %></th> - <th><%== sort_link(:default?) %></th> - <th><%== sort_link(:sensitive?) %></th> - <th><%== sort_link(:read_only?) %></th> - </tr> - </thead> - <tbody> - <%== - each_partial( - @configs, - 'cluster/config' - ) - %> - </tbody> - </table> - </div> - </div> +<div class="data-table-wrapper"> + <table class="data-table"> + <thead> + <tr> + <th><%== sort_link(:name) %></th> + <th><%== sort_link(:value) %></th> + <th><%== sort_link(:default?) %></th> + <th><%== sort_link(:sensitive?) %></th> + <th><%== sort_link(:read_only?) %></th> + </tr> + </thead> + <tbody> + <%== + each_partial( + @configs, + 'cluster/config' + ) + %> + </tbody> + </table> </div>