diff --git a/web/src/components/misc/SectionHeading.svelte b/web/src/components/misc/SectionHeading.svelte index 4645f2d00..e3b1e6351 100644 --- a/web/src/components/misc/SectionHeading.svelte +++ b/web/src/components/misc/SectionHeading.svelte @@ -8,6 +8,9 @@ export let title: string; export let sectionId: string; export let beta = false; + export let copyData = ""; + + const sectionURL = `${$page.url.origin}${$page.url.pathname}#${sectionId}`; let copied = false; @@ -19,19 +22,27 @@