mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Removed unnecessary optional property access operator.
This commit is contained in:
parent
4cdf023cc6
commit
d8d0aa7ef6
@ -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 => {
|
||||||
|
Loading…
Reference in New Issue
Block a user