1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 03:29:37 +02:00
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} tabIndex={0}
> >
{entity.isPinned ? ( {entity.isPinned ? (
<Icon icon="mdiPinOff" color="var(--color-accent)" />
) : (
<Icon icon="mdiPin" /> <Icon icon="mdiPin" />
) : (
<Icon icon="mdiPinOff" color="var(--color-accent)" />
)} )}
</div> </div>
)} )}
@ -71,9 +71,9 @@ export const TableActions = (props: Props): JSX.Element => {
tabIndex={0} tabIndex={0}
> >
{entity.isPublic ? ( {entity.isPublic ? (
<Icon icon="mdiEyeOff" color="var(--color-accent)" />
) : (
<Icon icon="mdiEye" /> <Icon icon="mdiEye" />
) : (
<Icon icon="mdiEyeOff" color="var(--color-accent)" />
)} )}
</div> </div>
</td> </td>