@budibase/bbui 2.9.30-alpha.7 → 2.9.30

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/bbui",
3
3
  "description": "A UI solution used in the different Budibase projects.",
4
- "version": "2.9.30-alpha.7",
4
+ "version": "2.9.30",
5
5
  "license": "MPL-2.0",
6
6
  "svelte": "src/index.js",
7
7
  "module": "dist/bbui.es.js",
@@ -38,8 +38,8 @@
38
38
  ],
39
39
  "dependencies": {
40
40
  "@adobe/spectrum-css-workflow-icons": "1.2.1",
41
- "@budibase/shared-core": "2.9.30-alpha.7",
42
- "@budibase/string-templates": "2.9.30-alpha.7",
41
+ "@budibase/shared-core": "2.9.30",
42
+ "@budibase/string-templates": "2.9.30",
43
43
  "@spectrum-css/accordion": "3.0.24",
44
44
  "@spectrum-css/actionbutton": "1.0.1",
45
45
  "@spectrum-css/actiongroup": "1.0.1",
@@ -106,5 +106,5 @@
106
106
  }
107
107
  }
108
108
  },
109
- "gitHead": "bac3cdb4bebb17be2666117c4f3752f726d68739"
109
+ "gitHead": "b4ff91c9ab2f2ded247a1d41c088da840a5e1470"
110
110
  }
@@ -215,7 +215,7 @@
215
215
  const nameA = getDisplayName(a)
216
216
  const nameB = getDisplayName(b)
217
217
  if (orderA !== orderB) {
218
- return orderA < orderB ? orderA : orderB
218
+ return orderA < orderB ? a : b
219
219
  }
220
220
  return nameA < nameB ? a : b
221
221
  })