|
@@ -871,7 +871,8 @@
|
|
|
<div class="bg-light border p-2">
|
|
|
@php
|
|
|
function displayNode($_key, $_node) {
|
|
|
- $nodeOutput = '<div class="mb-1">' . ucwords(str_replace("_", " ", $_key)) . ': ';
|
|
|
+ $keyDisplay = ucwords(str_replace("_", " ", $_key));
|
|
|
+ $nodeOutput = '<div class="mb-1">' . $keyDisplay . ': ';
|
|
|
$nodeType = gettype($_node);
|
|
|
if(is_array($_node) && count($_node)) {
|
|
|
$nodeOutput .= '<div class="border-left pl-3 my-1">';
|
|
@@ -881,7 +882,12 @@
|
|
|
$nodeOutput .= '</div>';
|
|
|
}
|
|
|
else if(!is_array($_node)) {
|
|
|
- $nodeOutput .= '<b>' . (!empty($_node) ? $_node : '-') . '</b>';
|
|
|
+ if($keyDisplay != 'Member Id') {
|
|
|
+ $nodeOutput .= '<b>' . (!empty($_node) ? $_node : '-') . '</b>';
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ $nodeOutput .= '<b class="c-pointer text-primary show-on-click" data-value="' . (!empty($_node) ? $_node : '-') . '">Click to view</b>';
|
|
|
+ }
|
|
|
}
|
|
|
else {
|
|
|
$nodeOutput .= '-';
|