diff --git a/packages/applet/src/components/timeline/index.vue b/packages/applet/src/components/timeline/index.vue index c94db069..7d9889f2 100644 --- a/packages/applet/src/components/timeline/index.vue +++ b/packages/applet/src/components/timeline/index.vue @@ -12,11 +12,14 @@ import RootStateViewer from '~/components/state/RootStateViewer.vue' import { createExpandedContext } from '~/composables/toggle-expanded' import EventList from './EventList.vue' -const props = defineProps<{ +const props = withDefaults(defineProps<{ layerIds: string[] docLink: string githubRepoLink?: string -}>() + headerVisible?: boolean +}>(), { + headerVisible: true, +}) const { expanded: expandedStateNodes } = createExpandedContext('timeline-state') @@ -96,7 +99,7 @@ onUnmounted(() => {