Skip to content

Commit

Permalink
change "no tasks found" msg on Profile Detail Epic: UX for Tasks #69
Browse files Browse the repository at this point in the history
…Epic: UX for Profiles #71
  • Loading branch information
blahosyl committed Aug 19, 2024
1 parent 2910fc7 commit 5eda8dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/profiles/ProfileDetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function ProfileDetail() {
`}
>
<TaskList
message="No results found. Adjust the search keyword assign a task to yourself."
message="No tasks found. Try adjusting the search keyword or clicking a different tab"
filter={`assignee__profile=${profile?.id}&ordering=-updated_at&`}
taskList
tasks={tasks}
Expand All @@ -201,7 +201,7 @@ function ProfileDetail() {
`}
>
<TaskList
message="No results found. Adjust the search keyword or watch a task."
message="No tasks found. Try adjusting the search keyword or clicking a different tab"
filter={`watched__owner__profile=${profile?.id}&ordering=-watchers__created_at&`}
taskList
tasks={tasks}
Expand All @@ -220,7 +220,7 @@ function ProfileDetail() {
`}
>
<TaskList
message="No results found. Adjust the search keyword or create a task."
message="No tasks found. Try adjusting the search keyword or clicking a different tab"
filter={`owner__profile=${profile?.id}&ordering=-created_at&`}
taskList
tasks={tasks}
Expand Down

0 comments on commit 5eda8dc

Please sign in to comment.