diff --git a/public/store/index.html b/public/store/index.html index d4f9ccd..ce6149f 100644 --- a/public/store/index.html +++ b/public/store/index.html @@ -322,9 +322,16 @@ offerTitle.textContent = selected.title || selected.offer_id; offerSummary.textContent = selected.summary || 'No summary provided.'; offerPrice.textContent = 'Price: ' + (selected.price || '--') + ' ' + (selected.currency || ''); + let profile = ''; + if (selected.execution_profile && typeof selected.execution_profile === 'object') { + const pace = selected.execution_profile.pacing_tier || 'unknown'; + const surface = selected.execution_profile.connector_surface || 'unknown'; + profile = ', pacing=' + pace + ', surface=' + surface; + } offerPolicy.textContent = 'Policy: member-only=' + Boolean(selected.member_only) + ', workspace-bound=' + Boolean(selected.workspace_bound) + - ', transferable=' + Boolean(selected.transferable); + ', transferable=' + Boolean(selected.transferable) + + profile; } function populateOfferSelect() {