Skip to content

Commit

Permalink
OCPBUGS-48635: fix/remove broken codeRefs
Browse files Browse the repository at this point in the history
  • Loading branch information
logonoff committed Jan 23, 2025
1 parent 855f949 commit d3fc113
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion frontend/packages/console-app/console-extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -1535,7 +1535,7 @@
"title": "%console-app~Glusterfs%",
"provisioner": "kubernetes.io/glusterfs",
"allowVolumeExpansion": true,
"documentationLink": { "$codeRef": "storageProvisionerDocs.GLUSTER" },
"documentationLink": { "$codeRef": "storageProvisionerDocs.GLUSTERFS" },
"parameters": {
"resturl": {
"name": "%console-app~Gluster REST/Heketi URL%",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const validatePortworxBlockSize = (params: Parameters) => {
return null;
};

export const validatePorworxReplicas = (params: Parameters) => {
export const validatePortworxReplicas = (params: Parameters) => {
if (params.repl.value !== '' && !params.repl.value.match(/^[1-9]\d*$/)) {
// t('console-app~Number of replicas must be a number')
return 'console-app~Number of replicas must be a number';
Expand Down
11 changes: 0 additions & 11 deletions frontend/packages/dev-console/console-extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -873,17 +873,6 @@
"insertAfter": "topology-tab-section-builds-overview"
}
},
{
"type": "console.topology/details/tab-section",
"properties": {
"id": "topology-tab-section-vpas",
"tab": "topology-side-bar-tab-resource",
"provider": {
"$codeRef": "topology.useVpaTabSectionForTopologySideBar"
},
"insertAfter": "topology-tab-section-builds-overview"
}
},
{
"type": "console.topology/details/tab",
"properties": {
Expand Down

0 comments on commit d3fc113

Please sign in to comment.