mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-27 06:42:24 +02:00
UBERF-8469: Fix exit from github service (#6921)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
@@ -815,7 +815,7 @@ export abstract class IssueSyncManagerBase {
|
||||
|
||||
// Collect field update.
|
||||
for (const [k, v] of Object.entries(platformUpdate)) {
|
||||
const mapping = target.mappings.find((it) => it.name === k)
|
||||
const mapping = target.mappings.filter((it) => it != null).find((it) => it.name === k)
|
||||
if (mapping === undefined) {
|
||||
continue
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user