Skip to content

Commit 135a9f5

Browse files
authored
Merge pull request #4 from jorgedlcruz/features/vdp-testing
Features/v0.1.4
2 parents 0e2fea7 + 91ca1a6 commit 135a9f5

37 files changed

+4605
-705
lines changed

.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,9 @@ VBM_API_URL=https://your-vbm-server:4443
1010
VBM_USERNAME=your-vbm-username
1111
VBM_PASSWORD=your-vbm-password
1212

13+
VEEAM_ONE_API_URL="https://your-vone-server:1239"
14+
VEEAM_ONE_USERNAME="your-vone-username"
15+
VEEAM_ONE_PASSWORD="your-vone-password"
16+
1317
# dev only
1418
NODE_TLS_REJECT_UNAUTHORIZED=0

app/administration/branding/page.tsx

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import {
77
ContentLayoutSelector,
88
ThemeRadiusSelector,
99
ResetThemeButton,
10-
SidebarModeSelector
10+
SidebarModeSelector,
11+
SectionNamesEditor
1112
} from "@/components/theme-customizer"
1213
import { Separator } from "@/components/ui/separator"
1314

@@ -54,6 +55,19 @@ export default function BrandingPage() {
5455
</div>
5556
</div>
5657
</div>
58+
59+
<Separator className="my-6" />
60+
61+
<div className="space-y-4">
62+
<LabelDescription
63+
label="Section Names"
64+
description="Customize the sidebar section labels to match your organization's terminology."
65+
/>
66+
<SectionNamesEditor />
67+
</div>
68+
69+
<Separator className="my-6" />
70+
5771
<div className="flex justify-start">
5872
<div className="w-full md:w-auto">
5973
<ResetThemeButton />

0 commit comments

Comments
 (0)