fix: show Back to configuration breadcrumb when training completes
This commit is contained in:
parent
fc36696a52
commit
f4f2f50364
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ export function StudioPage(): ReactElement {
|
|||
const dialogInitial = useDatasetPreviewDialogStore((s) => s.initialData);
|
||||
const closeDialog = useDatasetPreviewDialogStore((s) => s.close);
|
||||
|
||||
const canGoBack = runtimePhase === "stopped" || runtimePhase === "error";
|
||||
const canGoBack = runtimePhase === "stopped" || runtimePhase === "error" || runtimePhase === "completed";
|
||||
const tourEnabled = hasHydratedRuntime && !isHydratingRuntime;
|
||||
const isConfigTour = !showTrainingView;
|
||||
const tourSteps = showTrainingView ? studioTrainingTourSteps : studioTourSteps;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue