Skip to content

Commit

Permalink
Merge pull request #4730 from inane-pixel/4672-header-alignment
Browse files Browse the repository at this point in the history
4672 header alignment
  • Loading branch information
cielf authored Oct 23, 2024
2 parents 51272ad + 7c5eb36 commit c23c8cd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/views/adjustments/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<table class="table">
<thead>
<tr>
<th>Created</th>
<th class="text-center">Created</th>
<th>Organization</th>
<th>Storage location</th>
<th>Comment</th>
Expand Down
6 changes: 3 additions & 3 deletions app/views/items/_item_list.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<tr>
<th>Category</th>
<th>Name</th>
<th>Quantity Per Individual</th>
<th>Fair Market Value (per item)</th>
<th class="text-right">Quantity Per Individual</th>
<th class="text-right">Fair Market Value (per item)</th>
<% if Flipper.enabled?(:enable_packs) %>
<% unless current_organization.request_units.empty? %>
<th>Custom Request Units</th>
<% end %>
<% end %>
<th class="text-center">Actions</th>
<th class="text-right">Actions</th>
</tr>
</thead>
<tbody>
Expand Down
2 changes: 1 addition & 1 deletion app/views/items/_item_row.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<tr data-item-id="<%= item_row.id %>">
<td><%= item_row.item_category && link_to(item_row.item_category&.name, item_category_path(item_row.item_category), class: 'text-blue-500') %></td>
<td><%= item_row.name %></td>
<td><%= item_row.distribution_quantity %></td>
<td class="text-right"> <%= item_row.distribution_quantity %></td>
<td class="numeric"><%= dollar_value(item_row.value_in_cents) %></td>
<% if Flipper.enabled?(:enable_packs) %>
<% unless current_organization.request_units.empty? %>
Expand Down
10 changes: 5 additions & 5 deletions app/views/purchases/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@
<th>Purchases from</th>
<th>Storage Location</th>
<th>Comments</th>
<th>Quantity of Items</th>
<th>Variety of Items</th>
<th>Amount spent</th>
<th>FMV</th>
<th>Purchased Date</th>
<th class="text-right">Quantity of Items</th>
<th class="text-right">Variety of Items</th>
<th class="text-right">Amount spent</th>
<th class="text-right">FMV</th>
<th class="text-right">Purchased Date</th>
<th class="text-right">Actions</th>
</tr>
</thead>
Expand Down

0 comments on commit c23c8cd

Please sign in to comment.