Skip to content

Commit f712677

Browse files
committed
fix(ml): update navigation paths for AIOps buttons in OverviewPage
- Changed the navigation paths for the Log Categorization, Log Rate Analysis, and Change Point Detection buttons in the OverviewPage component to reflect updated routes. - This improves the accuracy of navigation within the AIOps section of the application.
1 parent 62f48cb commit f712677

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

x-pack/platform/plugins/shared/ml/public/application/overview/overview_ml_page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export const OverviewPage: FC = () => {
226226
<EuiButton
227227
color="text"
228228
target="_self"
229-
onClick={() => navigateToPath('/aiops/log_categorization_index_select')}
229+
onClick={() => navigateToPath('/aiops/log_categorization')}
230230
data-test-subj="mlOverviewCardLogPatternAnalysisButton"
231231
>
232232
<EuiIcon aria-hidden={true} type="pattern" />
@@ -265,7 +265,7 @@ export const OverviewPage: FC = () => {
265265
<EuiButton
266266
color="text"
267267
target="_self"
268-
onClick={() => navigateToPath('/aiops/log_rate_analysis_index_select')}
268+
onClick={() => navigateToPath('/aiops/log_rate_analysis')}
269269
data-test-subj="mlOverviewCardLogRateAnalysisButton"
270270
>
271271
<EuiIcon aria-hidden={true} type="chartBarVertical" />
@@ -305,7 +305,7 @@ export const OverviewPage: FC = () => {
305305
color="text"
306306
target="_self"
307307
onClick={() =>
308-
navigateToPath('/aiops/change_point_detection_index_select')
308+
navigateToPath('/aiops/change_point_detection')
309309
}
310310
data-test-subj="mlOverviewCardChangePointDetectionButton"
311311
aria-label={i18n.translate(

0 commit comments

Comments
 (0)