Fixes the VV list view

This commit is contained in:
Crazylemon64
2016-08-14 02:43:14 -07:00
parent dbfc4562fa
commit cce439d205
+4 -1
View File
@@ -386,7 +386,10 @@ body
html += "<ul>"
var/index = 1
for(var/entry in L)
html += debug_variable(index, L[index], level + 1)
if(istext(entry))
html += debug_variable(entry, L[index], level + 1)
else
html += debug_variable(index, L[index], level + 1)
index++
html += "</ul>"