This commit is contained in:
Justus Dietrich 2025-03-07 18:05:49 +01:00 committed by GitHub
commit a8a75b3797
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -57,9 +57,9 @@ export const TableActions = (props: Props): JSX.Element => {
tabIndex={0}
>
{entity.isPinned ? (
<Icon icon="mdiPinOff" color="var(--color-accent)" />
) : (
<Icon icon="mdiPin" />
) : (
<Icon icon="mdiPinOff" color="var(--color-accent)" />
)}
</div>
)}
@ -71,9 +71,9 @@ export const TableActions = (props: Props): JSX.Element => {
tabIndex={0}
>
{entity.isPublic ? (
<Icon icon="mdiEyeOff" color="var(--color-accent)" />
) : (
<Icon icon="mdiEye" />
) : (
<Icon icon="mdiEyeOff" color="var(--color-accent)" />
)}
</div>
</td>