Default notification icon set (Heroicons) not displaying properly
After upgrading to Filament v3, the default notification icon set is not being displayed properly. The cache has been cleared and assets are all up to date.
When using
->success()
, it shows a . instead of a check mark. If I change the icon to say heroicon-o-document-text
, it shows the correct icon. One other strange issue is that the icon colour is now solid. Shouldn't it only colour the outline?
When using ->danger()
, it shows a solid empty circle.
"filament/notifications": "^3.0-stable" // v3.0.88
Thanks!2 Replies
No it should color the whole icon but not the backend. Ensure you have updated the icons for the blade-icons new v2 ones
Hey. I found the issue.
// app.css
svg {
fill: currentColor;
}
This was breaking some icons (e.g.
check-circle
). Never had this problem before in Filament v2. Thanks!