diff --git a/package.json b/package.json
index b85be29..d755136 100755
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "CacheClassExplorer",
- "version": "1.14.2",
+ "version": "1.14.3",
"description": "Class Explorer for InterSystems Caché",
"directories": {
"test": "test"
diff --git a/web/js/ClassView.js b/web/js/ClassView.js
index 651a7d3..6b65570 100755
--- a/web/js/ClassView.js
+++ b/web/js/ClassView.js
@@ -361,6 +361,12 @@ ClassView.prototype.getPropertyHoverText = function (prop, type) {
: "ClientDataType="
+ "" + data + "";
},
+ "CompileAfter": function (data) {
+ return "CompileAfter="
+ + data.split(",").map(function (e) {
+ return "" + e + ""
+ }).join(", ");
+ },
"DdlAllowed": 1,
"Deployed": 1,
"Dynamic": 1,