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

feat: filter tasks that are waiting for user input#19377

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 20 commits intomainfrombq/19324
Aug 21, 2025
Merged
Changes from1 commit
Commits
Show all changes
20 commits
Select commitHold shift + click to select a range
b5ffb82
chore: cleanup and organize code
BrunoQuaresmaAug 13, 2025
d502175
Merge branch 'main' of https://github.com/coder/coder into bq/19324
BrunoQuaresmaAug 15, 2025
d92ee0f
chore: fix biome settings for VSCode
BrunoQuaresmaAug 15, 2025
d3053e9
chore: user search params for user filtering
BrunoQuaresmaAug 15, 2025
b4c861b
feat: add tabs
BrunoQuaresmaAug 15, 2025
177f4b2
test: add stories
BrunoQuaresmaAug 15, 2025
061d4da
chore: fix fmt
BrunoQuaresmaAug 15, 2025
ab0e12c
Merge branch 'main' of https://github.com/coder/coder into bq/19324
BrunoQuaresmaAug 15, 2025
ed7d3b3
Apply suggestions from code review
BrunoQuaresmaAug 19, 2025
c93f279
Apply review suggestions
BrunoQuaresmaAug 19, 2025
baf98e4
Update site/src/pages/TasksPage/TasksPage.tsx
BrunoQuaresmaAug 19, 2025
654cbbf
Fix lint
BrunoQuaresmaAug 19, 2025
bffefd5
Fix lint
BrunoQuaresmaAug 19, 2025
2a1f139
Update site/src/pages/TasksPage/TasksPage.stories.tsx
BrunoQuaresmaAug 20, 2025
9ec150d
Update site/src/pages/TasksPage/TasksTable.tsx
BrunoQuaresmaAug 20, 2025
bdace80
Update site/src/api/api.ts
BrunoQuaresmaAug 20, 2025
1d3dc1c
Apply review comments
BrunoQuaresmaAug 20, 2025
cd31514
Show tasks not being shown
BrunoQuaresmaAug 20, 2025
be423d4
Merge branch 'main' of https://github.com/coder/coder into bq/19324
BrunoQuaresmaAug 20, 2025
d04abc5
Merge branch 'main' of https://github.com/coder/coder into bq/19324
BrunoQuaresmaAug 21, 2025
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
Update site/src/pages/TasksPage/TasksTable.tsx
Co-authored-by: ケイラ <mckayla@hey.com>
  • Loading branch information
@BrunoQuaresma@aslilac
BrunoQuaresma andaslilac authoredAug 20, 2025
commit9ec150de81c9a9b70ef42bcbb7af19f94b13aa2a
8 changes: 5 additions & 3 deletionssite/src/pages/TasksPage/TasksTable.tsx
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,10 +34,12 @@ export const TasksTable: FC<TasksTableProps> = ({ tasks, error, onRetry }) => {

if (error) {
body = <TasksErrorBody error={error} onRetry={onRetry} />;
} else if (tasks) {
body = tasks.length === 0 ? <TasksEmpty /> : <Tasks tasks={tasks} />;
} else {
} else if (!tasks) {
body = <TasksSkeleton />;
} else if (tasks.length === 0) {
body = <TasksEmpty />;
} else {
<Tasks tasks={tasks} />
}

return (
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp