apostrophe 2.227.1 → 2.227.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.227.2 (2023-05-26)
4
+
5
+ ### Fixes
6
+
7
+ 2.227.1 briefly broke the production frontend admin UI build process. This has been corrected.
8
+
3
9
  ## 2.227.1 (2023-05-26)
4
10
 
5
11
  ### Fixes
@@ -583,7 +583,7 @@ apos.define('apostrophe-modal', {
583
583
  // also provide the name of the item that we are within.
584
584
  if (i > 0 && slides[i - 1].arrayItems && slides[i - 1].arrayItems.length > 0 && slides[i - 1].options.field.titleField) {
585
585
  const titleFieldValue = slides[i - 1].arrayItems[slides[i - 1].active][slides[i - 1].options.field.titleField];
586
- $li.text(slide.options.field.label + (titleFieldValue ? ` (${titleFieldValue})` : ''));
586
+ $li.text(slide.options.field.label + (titleFieldValue ? ' (' + titleFieldValue + ')' : ''));
587
587
  } else {
588
588
  $li.text(slide.options.field.label);
589
589
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apostrophe",
3
- "version": "2.227.1",
3
+ "version": "2.227.2",
4
4
  "description": "The Apostrophe Content Management System.",
5
5
  "main": "index.js",
6
6
  "scripts": {