From 0f39be89c3d5620b8187b1d7621b7680800c268b Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Tue, 30 Aug 2022 14:54:33 +1000 Subject: Display IUCN status in TileInfoModal --- src/tol.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/tol.ts') diff --git a/src/tol.ts b/src/tol.ts index 2618bfc..bd299b3 100644 --- a/src/tol.ts +++ b/src/tol.ts @@ -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 -- cgit v1.2.3