fix: improve image handling and icon support

- Fix image load event handler signature
- Add alt text for accessibility
- Add building icon to FontAwesome library

Technical Changes:
- Update cacheImage event to pass only image URL
- Add proper alt text for activity images
- Add faBuilding icon to FontAwesome library

This improves image handling and accessibility while adding
needed icon support for the activity feed interface.
This commit is contained in:
Matthew Raymer
2025-03-07 12:58:14 +00:00
parent 3168416bfa
commit 66df9234fa
2 changed files with 54 additions and 37 deletions

View File

@@ -88,6 +88,7 @@ import {
faUser,
faUsers,
faXmark,
faBuilding,
} from "@fortawesome/free-solid-svg-icons";
library.add(
@@ -168,6 +169,7 @@ library.add(
faUser,
faUsers,
faXmark,
faBuilding,
);
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";