tinacms 0.69.21 → 0.69.22

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.es.js CHANGED
@@ -5052,14 +5052,14 @@ const CollectionListPage = () => {
5052
5052
  },
5053
5053
  ...fields.map((x) => [
5054
5054
  {
5055
- label: x.label || x.name + " (Ascending)",
5055
+ label: (x.label || x.name) + " (Ascending)",
5056
5056
  value: JSON.stringify({
5057
5057
  name: x.name,
5058
5058
  order: "asc"
5059
5059
  })
5060
5060
  },
5061
5061
  {
5062
- label: x.label || x.name + " (Descending)",
5062
+ label: (x.label || x.name) + " (Descending)",
5063
5063
  value: JSON.stringify({
5064
5064
  name: x.name,
5065
5065
  order: "desc"
package/dist/index.js CHANGED
@@ -5068,14 +5068,14 @@ This will work when developing locally but NOT when deployed to production.
5068
5068
  },
5069
5069
  ...fields.map((x) => [
5070
5070
  {
5071
- label: x.label || x.name + " (Ascending)",
5071
+ label: (x.label || x.name) + " (Ascending)",
5072
5072
  value: JSON.stringify({
5073
5073
  name: x.name,
5074
5074
  order: "asc"
5075
5075
  })
5076
5076
  },
5077
5077
  {
5078
- label: x.label || x.name + " (Descending)",
5078
+ label: (x.label || x.name) + " (Descending)",
5079
5079
  value: JSON.stringify({
5080
5080
  name: x.name,
5081
5081
  order: "desc"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinacms",
3
- "version": "0.69.21",
3
+ "version": "0.69.22",
4
4
  "main": "dist/index.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "exports": {
@@ -57,7 +57,7 @@
57
57
  "@react-hook/window-size": "^3.0.7",
58
58
  "@tinacms/schema-tools": "0.1.9",
59
59
  "@tinacms/sharedctx": "0.1.3",
60
- "@tinacms/toolkit": "0.58.3",
60
+ "@tinacms/toolkit": "0.58.4",
61
61
  "crypto-js": "^4.0.0",
62
62
  "fetch-ponyfill": "^7.1.0",
63
63
  "final-form": "4.20.1",