Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion apps/space/core/components/issues/issue-layouts/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export const removeNillKeys = <T,>(obj: T) =>
Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value)));

/**
* This Method returns if the the grouped values are subGrouped
* This Method returns if the grouped values are subGrouped
* @param groupedIssueIds
* @returns
*/
Expand Down
2 changes: 1 addition & 1 deletion apps/web/core/components/issues/issue-layouts/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ export const removeNillKeys = <T,>(obj: T) =>
Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value)));

/**
* This Method returns if the the grouped values are subGrouped
* This Method returns if the grouped values are subGrouped
* @param groupedIssueIds
* @returns
*/
Expand Down
2 changes: 1 addition & 1 deletion apps/web/core/store/issue/helpers/base-issues.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ export abstract class BaseIssuesStore implements IBaseIssuesStore {

// if the key for accumulator is not the current action,
// Meaning if the key already has an action ADD and the current one is REMOVE,
// The the key is deleted as both the actions cancel each other out
// The key is deleted as both the actions cancel each other out
if (accumulator[key] !== action) {
delete accumulator[key];
}
Expand Down