chore: fix typos in comments (#8553)
This commit is contained in:
parent
2a29ab8d4a
commit
bb4f172e26
3 changed files with 3 additions and 3 deletions
|
|
@ -218,7 +218,7 @@ export const removeNillKeys = <T,>(obj: T) =>
|
||||||
Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value)));
|
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
|
* @param groupedIssueIds
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -589,7 +589,7 @@ export const removeNillKeys = <T,>(obj: T) =>
|
||||||
Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value)));
|
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
|
* @param groupedIssueIds
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -1469,7 +1469,7 @@ export abstract class BaseIssuesStore implements IBaseIssuesStore {
|
||||||
|
|
||||||
// if the key for accumulator is not the current action,
|
// 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,
|
// 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) {
|
if (accumulator[key] !== action) {
|
||||||
delete accumulator[key];
|
delete accumulator[key];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue