Removed unnecessary optional property access operator.

This commit is contained in:
Daan Vanden Bosch 2020-05-01 21:30:03 +02:00
parent 4cdf023cc6
commit d8d0aa7ef6

View File

@ -65,7 +65,7 @@ export class QuestEditorToolBarController extends Controller {
// label should update). // label should update).
this.areas = quest_editor_store.current_quest.flat_map(quest => { this.areas = quest_editor_store.current_quest.flat_map(quest => {
if (quest) { if (quest) {
return quest?.entities_per_area.flat_map(entities_per_area => { return quest.entities_per_area.flat_map(entities_per_area => {
return list_property<AreaAndLabel>( return list_property<AreaAndLabel>(
undefined, undefined,
...area_store.get_areas_for_episode(quest.episode).map(area => { ...area_store.get_areas_for_episode(quest.episode).map(area => {