Skip to content

Commit

Permalink
fix(apis_relations): edit button appearance
Browse files Browse the repository at this point in the history
Style edit button in relations tables consistent
with edit button in list view (colour, title).
  • Loading branch information
koeaw committed Oct 7, 2024
1 parent c3ff714 commit 510d0ed
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{# djlint:off #}
<a href="#" class='reledit' onclick=GetFormAjax(null,"{% if record.relation_pk %}{{ record.relation_pk }}{% else %}{{ record.pk }}{% endif %}")>
<a href="#"
class="reledit text-warning"
title="edit"
onclick=GetFormAjax(null,"{% if record.relation_pk %}{{ record.relation_pk }}{% else %}{{ record.pk }}{% endif %}")>
{# djlint:on #}
<span class="material-symbols-outlined">edit</span>
</a>

0 comments on commit 510d0ed

Please sign in to comment.