From 4f7df863bb944bc4e1675f616e670370fd1f42e4 Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Fri, 24 Mar 2023 22:08:47 +0100 Subject: [PATCH] Preserve pull requests which were cherry-picked without a PR --- src/paths/index/components/changes/ChangesList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paths/index/components/changes/ChangesList.js b/src/paths/index/components/changes/ChangesList.js index 7fda196..5bf9e9b 100644 --- a/src/paths/index/components/changes/ChangesList.js +++ b/src/paths/index/components/changes/ChangesList.js @@ -166,7 +166,7 @@ export default class ChangesList extends LitElement { } _appendPull(pull, originalPull) { - if (!pull || !originalPull) { + if (!pull && !originalPull) { return; }