Skip to content

Conversation

@arpandhakal
Copy link
Collaborator

Changes

  • Headerbreadcrumbs layout fix on CRM view.
  • Added navigation for all elements in header breadcrumbs except the last one.
  • Fixed templates list jumping around.

@arpandhakal arpandhakal self-assigned this Dec 16, 2025
@linear
Copy link

linear bot commented Dec 16, 2025

@vercel
Copy link
Contributor

vercel bot commented Dec 16, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
tasks-app Ready Ready Preview, Comment Dec 18, 2025 1:38pm

Comment on lines 6 to 13
export function isPayloadEqual(
payload: RealtimePostgresChangesPayload<RealTimeTaskResponse | RealTimeTemplateResponse>,
): boolean {
const newPayload = payload.new
const oldPayload = payload.old
if (!newPayload || !oldPayload) return true
return deepEqual(newPayload, oldPayload)
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be that all of the fields that we are interested in (e.g. title, description, workflow state) are not changed and something else is changed. Let's focus on checking for these important fields instead of directly checking deepEqual

- Manage templates button on template options hidden when user is from notification center.
- added template fetcher on tasks details page so that user can access templates dropdown on notification-center-view
…gn fixes

- Sorted templates on templates board by createdAt. The rearrangement was caused because of updating redux store on hover.
- Removed extra line at the top of tempalte detail page.
…of having separate ones, memoized templats list
…of having separate ones, memoized templats list
- added manual timestamps for subtasks while creating them from a template with respect to parent templates createdAt.
- this process maintains that the subtasks are created parallely and in order which gives us both performance and ordering.
- found another issue where subtasks creation from templates causes race condition on realtime, causing update events to fire before create events for subtasks, causing duplicate data. Fixed this.
@arpandhakal arpandhakal merged commit 53ae576 into OUT-2799 Dec 18, 2025
2 of 3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants