Fixed links components (#2776)

This commit is contained in:
Henri Courdent
2023-12-04 20:01:29 +01:00
committed by GitHub
parent bea0da3d6f
commit 2d8bca8d38
2 changed files with 6 additions and 2 deletions
@@ -1228,7 +1228,7 @@ Hello \${ctx.username}
customcomponent: {
name: 'Custom',
icon: Code2,
documentationLink: `${documentationBaseUrl}#custom`,
documentationLink: `https://www.windmill.dev/docs/apps/react_components`,
dims: '1:2-1:2' as AppComponentDimensions,
customCss: {
container: { class: '', style: '' }
@@ -171,7 +171,11 @@
</script>
<Drawer bind:this={ccDrawer}>
<DrawerContent title="Custom Components" on:close={ccDrawer.closeDrawer}>
<DrawerContent
title="Custom Components"
on:close={ccDrawer.closeDrawer}
documentationLink="https://www.windmill.dev/docs/apps/react_components"
>
<ComponentsList on:reload={fetchCustomComponents} />
</DrawerContent>
</Drawer>