Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3d22e27

Browse files
authored
fix: handle task sidebar app health check disabled correctly (#18687)
Previously, by mistake, the task sidebar would not display workspaceapps that don't have a health check configured.
1 parent7e372f7 commit3d22e27

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

‎site/src/pages/TaskPage/TaskPage.stories.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export const TerminatedBuildWithStatus: Story = {
113113
},
114114
};
115115

116-
exportconstSidebarAppDisabled:Story={
116+
exportconstSidebarAppHealthDisabled:Story={
117117
beforeEach:()=>{
118118
spyOn(data,"fetchTask").mockResolvedValue({
119119
prompt:"Create competitors page",

‎site/src/pages/TaskPage/TaskSidebar.tsx‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@ const getSidebarApp = (task: Task): [WorkspaceApp | null, SidebarAppStatus] => {
5454
// indefinitely if there's a genuine issue, but this is preferable to false error alerts.
5555
return[null,"loading"];
5656
}
57+
// "disabled" means that the health check is disabled, so we assume
58+
// that the app is healthy
5759
if(sidebarApp.health==="disabled"){
58-
return[sidebarApp,"error"];
60+
return[sidebarApp,"healthy"];
5961
}
6062
if(sidebarApp.health==="healthy"){
6163
return[sidebarApp,"healthy"];

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp