Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/app/layouts/user-layout.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
[spotlight]="true"
></bit-nav-item>
<app-coachmark #importCoachmark stepId="importData" />
<bit-nav-item [text]="'exportNoun' | i18n" route="tools/export"></bit-nav-item>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this for VFO1? Should it be feature-flagged?

@itsadrago itsadrago Aug 13, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I believe so. Good point. Do we need to create a FF or is there an existing one that should be used?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Vault already made one! VFO1Foundation = "vfo1-foundation"

<bit-nav-item [text]="'exportNoun' | i18n" route="settings/export"></bit-nav-item>
</bit-nav-group>
<bit-nav-item
icon="bwi-sliders"
Expand Down
19 changes: 12 additions & 7 deletions apps/web/src/app/oss-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,16 @@ const routes: Routes = [
component: SponsoredFamiliesComponent,
data: { titleId: "sponsoredFamilies" } satisfies RouteDataProperties,
},
{
path: "export",
loadComponent: () =>
import("./tools/vault-export/export-web.component").then(
(mod) => mod.ExportWebComponent,
),
data: {
titleId: "exportNoun",
} satisfies RouteDataProperties,
},
],
},
{
Expand All @@ -790,13 +800,8 @@ const routes: Routes = [
},
{
path: "export",
loadComponent: () =>
import("./tools/vault-export/export-web.component").then(
(mod) => mod.ExportWebComponent,
),
data: {
titleId: "exportNoun",
} satisfies RouteDataProperties,
redirectTo: "/settings/export",
pathMatch: "full",
},
{
path: "generator",
Expand Down
Loading