@treely/strapi-slices 7.8.0 → 7.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,6 +8,7 @@ export declare enum CreditAvailability {
8
8
  interface FPMProject {
9
9
  id: string;
10
10
  title: string;
11
+ friendlyName?: string;
11
12
  isPublic?: boolean;
12
13
  geom?: {
13
14
  type: 'Point';
@@ -3191,7 +3191,7 @@ var ProjectGridCard = function ProjectGridCard(_ref) {
3191
3191
  })), React__default.default.createElement(boemly.Heading, {
3192
3192
  my: "4",
3193
3193
  size: "lg"
3194
- }, project.title), React__default.default.createElement(boemly.Flex, {
3194
+ }, project.friendlyName || project.title), React__default.default.createElement(boemly.Flex, {
3195
3195
  flexDir: "row",
3196
3196
  gap: "2",
3197
3197
  flexWrap: "wrap"