8000 fix: use first app in order instead of latest_app_status for focus in tasks by blink-so[bot] · Pull Request #18239 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: use first app in order instead of latest_app_status for focus in tasks #18239

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 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
Prev Previous commit
fix: reorder imports in TasksPage.tsx per biome rules
  • Loading branch information
blink-so[bot] committed Jun 5, 2025
commit 1e6dbe191e4ac25028be4d3553f27f9a06d1c72d
2 changes: 1 addition & 1 deletion site/src/pages/TasksPage/TasksPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import {
import { useAuthenticated } from "hooks";
import { ExternalLinkIcon, RotateCcwIcon, SendIcon } from "lucide-react";
import { AI_PROMPT_PARAMETER_NAME, type Task } from "modules/tasks/tasks";
import { AI_APP_CHAT_SLUG } from "../TaskPage/constants";
import { WorkspaceAppStatus } from "modules/workspaces/WorkspaceAppStatus/WorkspaceAppStatus";
import { type FC, type ReactNode, useState } from "react";
import { Helmet } from "react-helmet-async";
Expand All @@ -40,6 +39,7 @@ import { Link as RouterLink } from "react-router-dom";
import TextareaAutosize from "react-textarea-autosize";
import { pageTitle } from "utils/page";
import { relativeTime } from "utils/time";
import { AI_APP_CHAT_SLUG } from "../TaskPage/constants";
import { type UserOption, UsersCombobox } from "./UsersCombobox";

type TasksFilter = {
Expand Down
Loading
0