diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-08-30 14:54:33 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-08-30 14:57:21 +1000 |
| commit | 0f39be89c3d5620b8187b1d7621b7680800c268b (patch) | |
| tree | 315e4021898f01741924a32525fa4f831ee987f8 /src/tol.ts | |
| parent | e8e58a3bb9dc233dacf573973457c5b48d369503 (diff) | |
Display IUCN status in TileInfoModal
Diffstat (limited to 'src/tol.ts')
| -rw-r--r-- | src/tol.ts | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,7 @@ export class TolNode { commonName: null | string; imgName: null | string | [string, string] | [null, string] | [string, null]; // Pairs represent compound images + iucn: null | string; constructor(children: string[] = [], parent = null, tips = 0, pSupport = false){ this.otolId = null; this.children = children; @@ -20,6 +21,7 @@ export class TolNode { this.pSupport = pSupport; this.commonName = null; this.imgName = null; + this.iucn = null; } } // Maps TolNode names to TolNode objects |
