提交 6e0076d8 编写于 作者: T tijsrademakers

Fixed potential renderer error

上级 5c3e4919
......@@ -469,7 +469,12 @@ public class AdminRunningInstancesPanel extends DetailPanel {
variableItem.getItemProperty("name").setValue(variable);
// Get string value to show
String theValue = variableRendererManager.getStringRepresentation(variables.get(variable));
String theValue = null;
try {
theValue = variableRendererManager.getStringRepresentation(variables.get(variable));
} catch(Exception e) {
theValue = "N/A";
}
variableItem.getItemProperty("value").setValue(theValue);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册