Fix typing error in ListActivityHelper: string expected got int

This commit is contained in:
Julie Lenaerts 2024-07-23 16:42:36 +02:00
parent c82991674e
commit be19d09bad

View File

@ -152,7 +152,7 @@ class ListActivityHelper
return ''; return '';
} }
return $this->translator->trans($value); return $this->translator->trans((string) $value);
}, },
}; };
} }