diff --git a/prototype/UI/index.html b/prototype/UI/index.html
index 7824d9cdf..cc8f52604 100644
--- a/prototype/UI/index.html
+++ b/prototype/UI/index.html
@@ -167,6 +167,7 @@
function Syntax(json, continuation) {
if (json.indexed != null) { this.indexed = json.indexed.map(continuation); }
+ if (json.fixed != null) { this.fixed = json.fixed.map(continuation); }
if (json.keyed != null) { this.keyed = (new Dictionary(json.keyed)).map(continuation); }
if (json.leaf != null) { this.leaf = json.leaf; }
return this;