From bd00109cc5670fc2607ff646c7ce3e3eb76d03eb Mon Sep 17 00:00:00 2001 From: hallgren Date: Sun, 30 Sep 2012 19:47:30 +0000 Subject: [PATCH] gfse: display "??" instead of "null" in linearization types when lincats are missing --- src/www/gfse/editor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/www/gfse/editor.js b/src/www/gfse/editor.js index bbca6a849..56520018d 100644 --- a/src/www/gfse/editor.js +++ b/src/www/gfse/editor.js @@ -1359,6 +1359,7 @@ function lintype(g,conc,igs,dc,type) { function lincat(cat) { return dc[cat] ? (dc[cat]==g.basename ? cat_lincat(conc,cat) : ihcat_lincat(cat)) + || "??" : cat+"??" } return type.map(lincat)