We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c90502 commit af258b2Copy full SHA for af258b2
libs/ui-lib/lib/ocm/components/clusterWizard/Operators.tsx
@@ -53,7 +53,9 @@ const OperatorsForm = ({ cluster }: { cluster: Cluster }) => {
53
!canNextOperators({ cluster });
54
55
const handleNext = () => {
56
- history.replace(pathname, undefined);
+ if (window.location.pathname.indexOf('assisted-installer') > -1) {
57
+ history.replace(pathname, undefined);
58
+ }
59
clusterWizardContext.moveNext();
60
};
61
0 commit comments