Skip to content

Commit 6e3d2db

Browse files
authored
fix: Sidebar package fix (#2824)
## Description Provide a concise summary of the changes made in this pull request - ## Pull request type Check the appropriate box: - [ ] Review Fixes - [ ] Documentation Overhaul - [ ] Feature/Story - Link one or more Engineering Tickets * - [ ] A-Force - [ ] Error in documentation - [ ] Maintenance ## Documentation tickets Link to one or more documentation tickets: - ## Checklist From the below options, select the ones that are applicable: - [ ] Checked for Grammarly suggestions. - [ ] Adhered to the writing checklist. - [ ] Adhered to the media checklist. - [ ] Verified and updated cross-references or added redirect rules. - [ ] Tested the redirect rules on deploy preview. - [ ] Validated the modifications made to the content on the deploy preview. - [ ] Validated the CSS modifications on different screen sizes.
1 parent b405e95 commit 6e3d2db

File tree

2 files changed

+37
-113
lines changed

2 files changed

+37
-113
lines changed

website/docs/packages/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tags={[
2121
Reusability is an integral part of application development, offering various advantages like speeding up the development process, centralizing business logic, and introducing standardization into applications. Appsmith enhances reusability by providing a feature set, which allows you to reuse widgets, queries, and JS logic across your applications.
2222

2323
:::info
24-
For Appsmith version v1.56 or earlier, refer to the legacy documentation for the packages. For more information, see [Package Legacy Documentation](https://appsmith-docs-git-packages-v156-get-appsmith.vercel.app/packages/overview).
24+
For Appsmith version v1.57 or earlier, refer to the legacy documentation for the packages. For more information, see [Package Legacy Documentation](https://appsmith-docs-git-packages-v156-get-appsmith.vercel.app/packages/overview).
2525
:::
2626

2727
## Packages

website/sidebars.js

Lines changed: 36 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -632,84 +632,6 @@ const sidebars = {
632632
`write-code/best-practices`,
633633
]
634634
}, //CODE end
635-
//module start
636-
{
637-
type: 'category',
638-
collapsed: false,
639-
label: 'Packages (Beta)',
640-
items: [
641-
'packages/overview',
642-
643-
{
644-
type: 'category',
645-
label: 'Tutorial',
646-
items: [
647-
'packages/tutorial/query-module',
648-
'packages/tutorial/js-module'
649-
],
650-
},
651-
{
652-
type: 'category',
653-
collapsed: true,
654-
label: 'How-to Guides',
655-
items: [
656-
'packages/how-to-guides/pass-date-between-modules',
657-
'packages/how-to-guides/use-query-inside-js-module',],
658-
},
659-
{
660-
type: 'category',
661-
collapsed: false,
662-
label: 'Reference',
663-
items: [
664-
'packages/reference/package',
665-
'packages/reference/query-module'
666-
],
667-
}
668-
]
669-
}, //module end
670-
//Workflows start
671-
{
672-
type: 'category',
673-
collapsed: false,
674-
label: 'Workflows (Beta)',
675-
items: [
676-
'workflows/README',
677-
//category- Api
678-
{
679-
type: 'category',
680-
label: 'Tutorial',
681-
link: {
682-
type: 'doc',
683-
id: 'workflows/tutorials/create-workflow',
684-
},
685-
items: [
686-
],
687-
},
688-
{
689-
type: 'category',
690-
label: 'How-to Guides',
691-
link: {
692-
type: 'doc',
693-
id: 'workflows/how-to-guides/README',
694-
},
695-
items: [
696-
'workflows/how-to-guides/create-approval-workflow',
697-
'workflows/how-to-guides/trigger-workflow-from-appsmith-app',
698-
'workflows/how-to-guides/set-up-automatic-processing',
699-
],
700-
},
701-
{
702-
type: 'category',
703-
collapsed: false,
704-
label: 'Reference',
705-
items: [
706-
'workflows/reference/workflow-queries',
707-
'workflows/reference/workflow-functions'
708-
],
709-
}
710-
]
711-
712-
}, //Workflows end
713635
{
714636
//Advanced Concepts Start
715637
type: 'category',
@@ -814,41 +736,43 @@ const sidebars = {
814736
'advanced-concepts/external-portal-using-appsmith',
815737
],
816738
}, //Advanced Concepts end
817-
//module start
818-
{
819-
type: 'category',
820-
collapsed: false,
821-
label: 'Packages (Beta)',
822-
items: [
823-
'packages/overview',
824739

825-
{
826-
type: 'category',
827-
label: 'Tutorial',
828-
items: [
829-
'packages/tutorial/query-module',
830-
'packages/tutorial/js-module'
831-
],
832-
},
833-
{
834-
type: 'category',
835-
collapsed: true,
836-
label: 'How-to Guides',
837-
items: [
838-
'packages/how-to-guides/use-query-inside-js-module',],
839-
},
840-
{
841-
type: 'category',
842-
collapsed: false,
843-
label: 'Reference',
844-
items: [
845-
'packages/reference/package',
846-
'packages/reference/query-module'
847-
848-
],
849-
}
850-
]
851-
}, //module end
740+
//module start
741+
{
742+
type: 'category',
743+
collapsed: false,
744+
label: 'Packages (Beta)',
745+
items: [
746+
'packages/overview',
747+
748+
{
749+
type: 'category',
750+
label: 'Tutorial',
751+
items: [
752+
'packages/tutorial/query-module',
753+
'packages/tutorial/js-module'
754+
],
755+
},
756+
{
757+
type: 'category',
758+
collapsed: true,
759+
label: 'How-to Guides',
760+
items: [
761+
'packages/how-to-guides/pass-date-between-modules',
762+
'packages/how-to-guides/use-query-inside-js-module',],
763+
},
764+
{
765+
type: 'category',
766+
collapsed: false,
767+
label: 'Reference',
768+
items: [
769+
'packages/reference/package',
770+
'packages/reference/query-module'
771+
],
772+
}
773+
]
774+
}, //module end
775+
852776
//Workflows start
853777
{
854778
type: 'category',

0 commit comments

Comments
 (0)