Skip to content

Commit

Permalink
Merge pull request #1951 from ever-co/fix/minor-task-page-fix
Browse files Browse the repository at this point in the history
fix: Minor Task Page Child Issues
  • Loading branch information
evereq authored Dec 4, 2023
2 parents fcc256e + 2d4c8c4 commit fa86abe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/app/hooks/features/useTeamTasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export function useTeamTasks() {
});
}

if (!user || activeTeamRef.current?.id) {
if (!user || !activeTeamRef.current?.id) {
return new Promise((response) => {
response(true);
});
Expand Down
2 changes: 1 addition & 1 deletion apps/web/lib/features/task/task-displays.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function TaskNameInfoDisplay({ task, className, taskTitleClassName, taskN
<span className={clsxm('text-gray-500 mr-1 font-normal', taskNumberClassName)}>
#{task?.taskNumber} {dash && '-'}
</span>
{task?.title}
<span>{task?.title.slice(0, 90)}</span>
</span>
</span>
</Tooltip>
Expand Down

0 comments on commit fa86abe

Please sign in to comment.