Don't display existing chapters twice

This commit is contained in:
Ajay
2022-02-24 21:53:45 -05:00
parent 7d8188d575
commit eb35f5c543
2 changed files with 10 additions and 5 deletions

View File

@@ -1085,7 +1085,8 @@ function updatePreviewBar(): void {
actionType: segment.actionType,
unsubmitted: false,
showLarger: segment.actionType === ActionType.Poi,
description: segment.description
description: segment.description,
source: segment.source,
});
});
}
@@ -1097,7 +1098,8 @@ function updatePreviewBar(): void {
actionType: segment.actionType,
unsubmitted: true,
showLarger: segment.actionType === ActionType.Poi,
description: segment.description
description: segment.description,
source: segment.source
});
});