Landing page shared count fix

* fixes bug where count of shared entries on landing page would ignore team-shared entries
* restore prior editable column icon rendering
This commit is contained in:
2022-10-19 07:24:00 +02:00
parent a203d73471
commit 1a8034fa20
2 changed files with 8 additions and 7 deletions

View File

@@ -216,7 +216,7 @@ class TableRenderMixin:
html += self.render_icn(
tooltip=_("Full access granted") if has_access else _("Access not granted"),
icn_class="fas fa-share-alt rlp-r-inv" if has_access else "",
icn_class="fas fa-edit rlp-r-inv" if has_access else "far fa-edit",
)
return format_html(html)