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

fix: handle chat app not found#19947

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
BrunoQuaresma merged 11 commits intomainfrombq/fix-show-error-when-chat-unhelathy
Sep 26, 2025
Merged
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Don't show disabled apps
  • Loading branch information
@BrunoQuaresma
BrunoQuaresma committedSep 26, 2025
commit80d28ce7db16a061dbd42679ce47b6538fb10c95

Some comments aren't visible on the classic Files Changed page.

4 changes: 3 additions & 1 deletionsite/src/pages/TaskPage/TaskApps.tsx
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -31,7 +31,9 @@ export const TaskApps: FC<TaskAppsProps> = ({ task }) => {
const apps = getTaskApps(task).filter(
// The Chat UI app will be displayed in the sidebar, so we don't want to
// show it as a web app.
(app) => app.id !== task.workspace.latest_build.ai_task_sidebar_app_id,
(app) =>
app.id !== task.workspace.latest_build.ai_task_sidebar_app_id &&
app.health !== "disabled",
);
const [embeddedApps, externalApps] = splitEmbeddedAndExternalApps(apps);
const [activeAppId, setActiveAppId] = useState(embeddedApps.at(0)?.id);
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp