From f4e033497e02e649f2aeee202f73d2434d995aca Mon Sep 17 00:00:00 2001
From: Xiao Gui <xgui3783@gmail.com>
Date: Tue, 12 Oct 2021 16:04:45 +0200
Subject: [PATCH] fix lint

---
 src/atlasComponents/parcellationRegion/region.base.ts | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/atlasComponents/parcellationRegion/region.base.ts b/src/atlasComponents/parcellationRegion/region.base.ts
index baa623fc8..31de7af98 100644
--- a/src/atlasComponents/parcellationRegion/region.base.ts
+++ b/src/atlasComponents/parcellationRegion/region.base.ts
@@ -59,15 +59,15 @@ export class RegionBase {
     this.rgbDarkmode = l < 0.4
   }
 
+  get region(){
+    return this._region
+  }
+
   get originDatainfos(){
     if (!this._region) return []
     return this._region._dataset_specs || this._region.originDatainfos
   }
 
-  get region(){
-    return this._region
-  }
-
   public hasContext$: BehaviorSubject<boolean> = new BehaviorSubject(false)
   public region$: BehaviorSubject<any> = new BehaviorSubject(null)
 
-- 
GitLab