app/views/phcpresspro/article/categories/index.html.erb in phcpresspro-83.0.0 vs app/views/phcpresspro/article/categories/index.html.erb in phcpresspro-84.0.0
- old
+ new
@@ -41,13 +41,13 @@
</tr>
</thead>
<tbody>
<% @article_categories.each do |article_category| %>
<tr>
- <td><%= link_to article_category.category_name, phcpresspro.edit_article_category_path(article_category) %></td>
- <td>
+ <td style="width: 70%"><%= link_to article_category.category_name, phcpresspro.edit_article_category_path(article_category) %></td>
+ <td style="width: 30%">
<div class="btn-group d-flex" role="group">
- <%= link_to 'Edit Category', edit_article_category_path(article_category), class: "btn btn-primary btn-xs" %>
+ <%= link_to 'Update Category', edit_article_category_path(article_category), class: "btn btn-primary btn-xs" %>
<%= link_to 'Remove Category', article_category, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure?' } %>
</div>
</td>
</tr>
<% end %>