Skip to content

Commit c29071d

Browse files
committed
PMM-15326: Rename the UI's "PSMDB OpenManager" to "OpenManager"
Two user-visible strings: the sidebar's top-level entry and the Overview page's heading. The comment in `PomHeader` describing that nav entry follows them, so it does not name something the reader cannot find. The remaining "PSMDB Open Manager" occurrences are deliberately left. They gloss where the acronym POM comes from - in `router.tsx`, `lib/constants.ts` and the workspace docs - and that origin does not change because the displayed name got shorter. Renaming them would leave "POM" unexplained. No test pinned the old string, and none needed updating. Signed-off-by: Pawel Lebioda <pawel.lebioda@percona.com>
1 parent df22d83 commit c29071d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export const addSepApps = (): NavItem[] => [
331331
export const addPom = (): NavItem[] => [
332332
{
333333
id: 'pom',
334-
text: 'PSMDB OpenManager',
334+
text: 'OpenManager',
335335
icon: MongoIcon,
336336
url: POM_PATH,
337337
matches: [POM_PATH],

ui/packages/plugins/pom/src/OverviewPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ export function OverviewPage() {
403403
<Stack gap={3}>
404404
<Stack gap={1}>
405405
<PomHeader
406-
title="PSMDB OpenManager"
406+
title="OpenManager"
407407
subtitle={
408408
<Typography variant="body2" color="text.secondary">
409409
Every monitored MongoDB cluster, one table per environment. Unfold

ui/packages/plugins/pom/src/components/PomHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { Stack, Typography } from '@mui/material';
2121
* Page title, subtitle, and a slot for page-level actions.
2222
*
2323
* Navigation between Overview and Discovery lives in PMM's sidebar, under the
24-
* expandable PSMDB OpenManager entry — so this deliberately renders no tabs.
24+
* expandable OpenManager entry — so this deliberately renders no tabs.
2525
*/
2626
export function PomHeader({
2727
title,

0 commit comments

Comments
 (0)