small fix ModWatchtools

This commit is contained in:
HF 2022-09-18 11:42:29 +02:00
parent aa256fb289
commit c409e16a64

View File

@ -299,6 +299,9 @@ function ModWatchtools() {
.map((row) => (
<tr key={row[0]}>
{row.slice(1).map((val, ind) => {
if (val === null) {
return (<td>N/A</td>);
}
const type = types[ind + 1];
switch (type) {
case 'ts': {