|
@@ -192,7 +192,7 @@ export class DivideFloorScene extends FloorScene {
|
|
|
*
|
|
|
*/
|
|
|
clearSpaceSelection(): void {
|
|
|
- this.spaceList = this.spaceList.map(t => {
|
|
|
+ this.spaceList.map(t => {
|
|
|
t.selected = false;
|
|
|
return t;
|
|
|
});
|
|
@@ -203,7 +203,7 @@ export class DivideFloorScene extends FloorScene {
|
|
|
*
|
|
|
*/
|
|
|
clearZoneSelection(): void {
|
|
|
- this.zoneList = this.zoneList.map(t => {
|
|
|
+ this.zoneList.map(t => {
|
|
|
t.selected = false;
|
|
|
return t;
|
|
|
});
|