Merge pull request #5065 from SnotyMe/migrate/svelte5

fix(svelte): inverted attribution condition
This commit is contained in:
Peter Kogo
2025-03-04 12:47:31 +01:00
committed by GitHub

View File

@@ -5,7 +5,7 @@
let { proOptions, position = 'bottom-right' }: AttributionProps = $props();
</script>
{#if proOptions?.hideAttribution}
{#if !proOptions?.hideAttribution}
<Panel
{position}
class="svelte-flow__attribution"