diff --git a/src/sheets/character/parts/FavoriteFeaturesList.svelte b/src/sheets/character/parts/FavoriteFeaturesList.svelte index 732d24764..47620f095 100644 --- a/src/sheets/character/parts/FavoriteFeaturesList.svelte +++ b/src/sheets/character/parts/FavoriteFeaturesList.svelte @@ -19,6 +19,9 @@ import type { Readable } from 'svelte/store'; import RechargeControl from 'src/components/item-list/controls/RechargeControl.svelte'; import { ItemUtils } from 'src/utils/ItemUtils'; + import InlineActivitiesList from 'src/components/item-list/InlineActivitiesList.svelte'; + import type { InlineToggleService } from 'src/features/expand-collapse/InlineToggleService'; + import InlineToggleControl from 'src/sheets/shared/InlineToggleControl.svelte'; let context = getContext>( CONSTANTS.SVELTE_CONTEXT.CONTEXT, @@ -30,6 +33,10 @@ CONSTANTS.SVELTE_CONTEXT.ITEM_IDS_TO_SHOW, ); + let inlineToggleService = getContext( + CONSTANTS.SVELTE_CONTEXT.INLINE_TOGGLE_SERVICE, + ); + const localize = FoundryAdapter.localize; @@ -64,6 +71,9 @@ > + {#if item?.system.activities?.contents.length > 1} + + {/if} toggleSummary($context.actor)} hasChildren={false} @@ -93,6 +103,9 @@ {/if} + {#if item?.system.activities?.contents.length > 1} + + {/if} {/each}