diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-05-24 13:12:36 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-05-24 13:12:36 +1000 |
| commit | c5101c0e34ba8db5aeb009f3a17c82fdaeb869ae (patch) | |
| tree | f3bf2bda5b287e223aa85f066e8eaf979c11c66d /src/tol.ts | |
| parent | 5b3fcc397cf87ef4f484a01e3fc00f4e18b6f6da (diff) | |
Don't show blank image in info-modal for for compound-image with only 1 sub-image
Diffstat (limited to 'src/tol.ts')
| -rw-r--r-- | src/tol.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ export class TolNode { tips: number; pSupport: boolean; commonName: null | string; - imgName: null | string | [string, string]; + imgName: null | string | [string, string] | [null, string] | [string, null]; constructor(children: string[] = [], parent = null, tips = 0, pSupport = false){ this.children = children; this.parent = parent; |
