Skip to content

Commit 762bdc4

Browse files
ironAiken2agatha197
authored andcommitted
fix(FR-2467): disable session commit button until session is Running (#6452)
Resolves #6443 (FR-2467) - Disable commit button when session status is not RUNNING - Previously only checked isActive() which allowed non-running states like PREPARING, PENDING, PULLING to enable the button - [ ] Verify commit button is disabled when session is in PREPARING state - [ ] Verify commit button is disabled when session is in PENDING state - [ ] Verify commit button is enabled when session is in RUNNING state - [ ] Verify commit button remains disabled for non-owners regardless of session status 🤖 Generated with [Claude Code](https://claude.com/claude-code)
1 parent e8f028f commit 762bdc4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

react/src/components/EduAppLauncher.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,4 +1224,4 @@ const EduAppSessionLauncher: React.FC<{
12241224
return null;
12251225
};
12261226

1227-
export default EduAppLauncher;
1227+
export default EduAppLauncher;

react/src/pages/EduAppLauncherPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ const EduAppLauncherPageContent: React.FC = () => {
4848
return <EduAppLauncherLazy apiEndpoint={apiEndpoint} active={true} />;
4949
};
5050

51-
export default EduAppLauncherPage;
51+
export default EduAppLauncherPage;

0 commit comments

Comments
 (0)