mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
fix(web): fix broken unit test
Some checks failed
Keyman Build Summary / Summarize build status checks (push) Has been cancelled
Some checks failed
Keyman Build Summary / Summarize build status checks (push) Has been cancelled
This commit is contained in:
parent
6896981bf6
commit
d2b5ac5832
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ export function buildMergedTransform(first: Transform, second: Transform): Trans
|
||||||
deleteLeft: first.deleteLeft + mergedSecondDelete
|
deleteLeft: first.deleteLeft + mergedSecondDelete
|
||||||
}
|
}
|
||||||
|
|
||||||
if(first.id && first.id == second.id) {
|
if(first.id !== undefined && first.id == second.id) {
|
||||||
returnedObj.id = first.id;
|
returnedObj.id = first.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue