* Returns the space of a specific uuid.
(uuid)
| 3250 | * Returns the space of a specific uuid. |
| 3251 | */ |
| 3252 | spaceOfUuid(uuid) { |
| 3253 | return [...this.values()].find(s => uuid === s.uuid); |
| 3254 | } |
| 3255 | |
| 3256 | get selectedSpace() { |
| 3257 | return this._selectedSpace ?? this.activeSpace; |