diff --git a/DnsServerCore/www/js/apps.js b/DnsServerCore/www/js/apps.js index 098d09cf..35418972 100644 --- a/DnsServerCore/www/js/apps.js +++ b/DnsServerCore/www/js/apps.js @@ -33,13 +33,14 @@ function refreshApps() { for (var i = 0; i < apps.length; i++) { var id = Math.floor(Math.random() * 10000); var name = apps[i].name; + var version = apps[i].version; var detailsTable = "
| Class Path | Description | Record Data Template | "; for (var j = 0; j < apps[i].details.length; j++) { detailsTable += "
|---|---|---|
| " + htmlEncode(apps[i].details[j].classPath) + " | " + htmlEncode(apps[i].details[j].description) + " | " +
- (apps[i].details[j].dataTemplate == null ? "" : "" + htmlEncode(apps[i].details[j].dataTemplate) + "") + " |