Skip to content

Commit 8dfac54

Browse files
committed
fix(name): Rename System Patch Manager to just Patch
1 parent 0cf4a6f commit 8dfac54

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.travis/create_manifest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ else
2424
git config user.email $MANIFEST_REPO_EMAIL
2525
git config user.name "vmaas-bot"
2626
git add .
27-
git diff-index --quiet HEAD || git commit -m "Update manifest for System Patch Manager UI"
27+
git diff-index --quiet HEAD || git commit -m "Update manifest for Patch UI"
2828
git push
2929
else
3030
echo -e "Other branch than master or prod-stable, not pushing a build"

src/SmartComponents/Advisories/Advisories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const Advisories = ({ history }) => {
7676

7777
return (
7878
<React.Fragment>
79-
<Header title={'System Patching'} showTabs />
79+
<Header title={'Patch'} showTabs />
8080
<Main>
8181
{status === STATUS_REJECTED ? <Error message={error.detail}/> :
8282
<AdvisoriesTable

src/SmartComponents/AdvisoryDetail/AdvisoryDetail.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const AdvisoryDetail = ({ match }) => {
4242
title={advisoryName}
4343
breadcrumbs={[
4444
{
45-
title: 'System Patching',
45+
title: 'Patch',
4646
to: paths.advisories.to,
4747
isActive: false
4848
},

src/SmartComponents/SystemDetail/InventoryPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const InventoryDetail = () => {
4949
title=""
5050
breadcrumbs={[
5151
{
52-
title: 'System Patching',
52+
title: 'Patch',
5353
to: paths.advisories.to,
5454
isActive: false
5555
},

src/SmartComponents/Systems/Systems.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const Systems = () => {
8484
return (
8585
<React.Fragment>
8686

87-
<Header title={'System Patching'} showTabs />
87+
<Header title={'Patch'} showTabs />
8888
<RemediationModalCmp />
8989
<Main>
9090
{status === STATUS_REJECTED ? <Error message={error.detail}/> :

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en-US">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>System Patch Manager</title>
5+
<title>Patch</title>
66
<esi:include src="/@@env/chrome/snippets/head.html" />
77
</head>
88
<body>

src/store/Reducers/SystemDetailStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const SystemDetailStore = (state = initialState, action) => {
1414
loaded: true,
1515
activeApps: [
1616
{
17-
title: 'System Patching',
17+
title: 'Patch',
1818
name: 'patch',
1919
component: () => <SystemAdvisories />
2020
}
@@ -26,7 +26,7 @@ export const SystemDetailStore = (state = initialState, action) => {
2626
loaded: true,
2727
activeApps: [
2828
{
29-
title: 'System Patching',
29+
title: 'Patch',
3030
name: 'patch',
3131
component: () => <SystemAdvisories />
3232
}

0 commit comments

Comments
 (0)