Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

554: Fixes new admin project icons #643

Merged
merged 3 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/assets/images/x_circle_fill.svg
nehamand marked this conversation as resolved.
Show resolved Hide resolved
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/views/new_admin/projects/_project_details.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<td class="px-4 py-3">
<div class="flex items-center text-sm">
<p class="text-sm text-gray-600 dark:text-gray-400 font-semibold">
<%= inline_svg_tag 'check_circle_fill.svg', class: "h-6 w-6 #{project.active_class}" %>
<%= heroicon "#{project.active ? 'check' : 'x' }-circle", options: { class: "h-8 w-8" } %>
</p>
</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion app/views/new_admin/projects/_projects_table.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</td>

<td class="px-4 py-3">
<%= inline_svg_tag 'check_circle_fill.svg', class: "h-6 w-6 #{project.active_class}" %>
<%= heroicon "#{project.active ? 'check' : 'x' }-circle", options: { class: "h-8 w-8" } %>
</td>

<td class="px-4 py-3">
Expand Down
Loading