uidex 0.10.0 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -7348,7 +7348,10 @@ function createEntityDetailView(config) {
7348
7348
  sections.push({ id: "description", text: meta.description });
7349
7349
  }
7350
7350
  if (offerAcceptance && meta?.acceptance?.length) {
7351
- sections.push({ id: "acceptance", items: meta.acceptance });
7351
+ sections.push({
7352
+ id: "acceptance",
7353
+ items: meta.acceptance.map((c) => c.text)
7354
+ });
7352
7355
  }
7353
7356
  if (entity) {
7354
7357
  for (const s of config.extraSections?.(ctx, entity) ?? []) {