Skip to content

Commit

Permalink
fix: fix minor issues in landing page and search (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
floydnant authored Jun 20, 2024
1 parent 1ec4bb1 commit 5da25e4
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h2 id="lists">
</div>
<div
*rxIf="getEntityDescription(entitiesState, entity); let desc"
class="description | bg-tinted-900 text-tinted-300 mt-1 h-full max-h-40 w-full overflow-y-auto rounded-lg px-2 py-1"
class="description | rendered-content | bg-tinted-900 text-tinted-300 mt-1 h-full max-h-40 w-full overflow-y-auto rounded-lg px-2 py-1"
[innerHTML]="desc | highlight : search.query"
></div>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const listId = 'priority-demo'
const demoTasks: TaskRecursive[] = [
{
id: listId + 'task-one',
title: 'Do that extremely urgent thing',
title: 'This needs to be done yesterday',
description: '',
listId,
status: TaskStatus.OPEN,
Expand Down Expand Up @@ -61,6 +61,20 @@ const demoTasks: TaskRecursive[] = [
},
{
id: listId + 'task-five',
title: 'This thing got deprioritized',
description: '',
listId,
status: TaskStatus.OPEN,
priority: TaskPriority.LOW,
parentTaskId: '',
children: [],
createdAt: new Date(),
statusUpdatedAt: new Date(),
ownerId: '5',
deadline: null,
},
{
id: listId + 'task-six',
title: 'This thing can wait until everything is else is done',
description: '',
listId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,23 @@ const demoTasks: TaskRecursive[] = [
ownerId: '5',
deadline: null,
},
{
id: listId + 'task-six',
title: 'This thing is being reviewed',
description: '',
listId,
status: TaskStatus.IN_REVIEW,
priority: TaskPriority.NONE,
parentTaskId: '',
children: [],
statusUpdatedAt: new Date(),
createdAt: new Date(),
ownerId: '5',
deadline: null,
},
{
id: listId + 'task-two',
title: 'A thing that can be worked on at any time',
title: "A thing that's ready to be worked on",
description: '',
listId,
status: TaskStatus.OPEN,
Expand Down Expand Up @@ -62,7 +76,7 @@ const demoTasks: TaskRecursive[] = [
},
{
id: listId + 'task-five',
title: 'A thing that turned out to be unnecessary',
title: 'A thing that turned out to be unwanted',
description: '',
listId,
status: TaskStatus.NOT_PLANNED,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
<div class="text-center">
<h1 class="main-heading | text-4xl font-bold tracking-tight sm:text-6xl">
Stay motivated with every
<app-icon icon="Completed" class="text-3xl sm:text-5xl"></app-icon> task!
<app-icon icon="COMPLETED" class="text-3xl sm:text-5xl"></app-icon> task!
</h1>
<p class="subline | text-tinted-500 mt-6 text-lg leading-8">
Say goodbye to procrastination, Rockket is the task manager that keeps you on track
Expand Down Expand Up @@ -389,7 +389,7 @@ <h2>Roadmap</h2>
</li>
<li>
<app-icon icon="far fa-code-commit rotate-90"></app-icon> Collaboration features like
<ul>
<ul class="ml-4">
<li>Realtime Sync</li>
<li>Profile pictures</li>
<li>Commenting</li>
Expand Down

0 comments on commit 5da25e4

Please sign in to comment.