diff --git a/CHANGES.md b/CHANGES.md index 56de1813be..f1e153712d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -61,6 +61,7 @@ example. It's still usable as before, we just removed the example. ### :heart: Community contributions (Thank you!) - Ensure consistent snap behavior across all zoom levels [Github #7774](https://github.com/penpot/penpot/pull/7774) by [@Tokytome](https://github.com/Tokytome) +- Fix crash in token grid view due to tooltip validation (by @dfelinto) [Github #7887](https://github.com/penpot/penpot/pull/7887) ### :sparkles: New features & Enhancements diff --git a/frontend/src/app/main/ui/ds/tooltip/tooltip.cljs b/frontend/src/app/main/ui/ds/tooltip/tooltip.cljs index 3dc5b71d66..5435ae0c77 100644 --- a/frontend/src/app/main/ui/ds/tooltip/tooltip.cljs +++ b/frontend/src/app/main/ui/ds/tooltip/tooltip.cljs @@ -173,7 +173,7 @@ [:id {:optional true} :string] [:offset {:optional true} :int] [:delay {:optional true} :int] - [:content [:or fn? :string]] + [:content [:or fn? :string map?]] [:placement {:optional true} [:maybe [:enum "top" "bottom" "left" "right" "top-right" "bottom-right" "bottom-left" "top-left"]]]])