{
let target = html`<div><div style='display:flex;gap:1.5em'><label> Custom Data </label>${viewof customData}</div></div>`;
let summary = html`<details style="max-width: 1200px; background: #fffced; box-sizing: border-box; padding: 10px 20px;"><summary style="font-weight: bold; cursor: pointer; outline: none;">Data Summary</summary>${SummaryTable(
customData,
{ label: "" }
)}<div>`;
if (customData.length > 0) {
target.appendChild(summary);
}
return target;
}