@dative-gpi/foundation-core-components 0.0.184 → 0.0.186

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.
@@ -117,7 +117,12 @@ export default defineComponent({
117
117
  table.value = composableTable;
118
118
  }
119
119
  else {
120
- await getUserOrganisationTable(props.tableCode);
120
+ try {
121
+ await getUserOrganisationTable(props.tableCode);
122
+ }
123
+ catch {
124
+ // Do nothing
125
+ }
121
126
  if (userOrganisationTable.value) {
122
127
  table.value = {
123
128
  headers: userOrganisationTable.value.columns,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-core-components",
3
3
  "sideEffects": false,
4
- "version": "0.0.184",
4
+ "version": "0.0.186",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -10,11 +10,11 @@
10
10
  "author": "",
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
- "@dative-gpi/foundation-core-domain": "0.0.184",
14
- "@dative-gpi/foundation-core-services": "0.0.184",
15
- "@dative-gpi/foundation-shared-components": "0.0.184",
16
- "@dative-gpi/foundation-shared-domain": "0.0.184",
17
- "@dative-gpi/foundation-shared-services": "0.0.184"
13
+ "@dative-gpi/foundation-core-domain": "0.0.186",
14
+ "@dative-gpi/foundation-core-services": "0.0.186",
15
+ "@dative-gpi/foundation-shared-components": "0.0.186",
16
+ "@dative-gpi/foundation-shared-domain": "0.0.186",
17
+ "@dative-gpi/foundation-shared-services": "0.0.186"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@dative-gpi/bones-ui": "^0.0.75",
@@ -26,5 +26,5 @@
26
26
  "sass": "1.71.1",
27
27
  "sass-loader": "13.3.2"
28
28
  },
29
- "gitHead": "03c6e4bb0fcac0276de2e43fcc8b7446807a6fd8"
29
+ "gitHead": "c0ddd7d0cf9c0a5c600dd680d5d22319f85bf8cd"
30
30
  }