Fixed an issue where the column converter wasn't running in a rendering context.

This commit is contained in:
MattMo 2023-05-19 10:30:27 -07:00
parent 23bb12f6d3
commit 159ce7313a

View File

@ -148,7 +148,11 @@ class DataRow {
//Invoke the column converter if there is one. //Invoke the column converter if there is one.
if (column.converter instanceof Function) { if (column.converter instanceof Function) {
this.columns.push(column.converter(value)); var converter = column.converter;
IgniteRendering.enter();
this.columns.push(converter(value));
IgniteRendering.leave();
} else { } else {
this.columns.push(value); this.columns.push(value);
} }