@abi-software/mapintegratedvuer 1.8.0-beta.1 → 1.8.1-beta.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/mapintegratedvuer",
3
- "version": "1.8.0-beta.1",
3
+ "version": "1.8.1-beta.0",
4
4
  "license": "Apache-2.0",
5
5
  "scripts": {
6
6
  "serve": "vite --host --force",
@@ -50,11 +50,11 @@
50
50
  "*.js"
51
51
  ],
52
52
  "dependencies": {
53
- "@abi-software/flatmapvuer": "^1.8.0-beta.0",
54
- "@abi-software/map-side-bar": "^2.7.0-beta.0",
55
- "@abi-software/map-utilities": "^1.4.0-beta.0",
53
+ "@abi-software/flatmapvuer": "^1.8.1-beta.0",
54
+ "@abi-software/map-side-bar": "^2.7.2-beta.0",
55
+ "@abi-software/map-utilities": "^1.4.1-beta.0",
56
56
  "@abi-software/plotvuer": "^1.0.3",
57
- "@abi-software/scaffoldvuer": "^1.8.0-beta.3",
57
+ "@abi-software/scaffoldvuer": "^1.8.1-beta.0",
58
58
  "@abi-software/simulationvuer": "1.0.1",
59
59
  "@abi-software/sparc-annotation": "0.3.2",
60
60
  "@abi-software/svg-sprite": "^1.0.1",
@@ -465,6 +465,9 @@ export default {
465
465
  top:2px;
466
466
  left: calc(50% - 60px);
467
467
  position: absolute;
468
+ display: flex;
469
+ align-items: center;
470
+
468
471
  .sync-help {
469
472
  left:5px;
470
473
  stroke: $app-primary-color;
@@ -478,6 +481,7 @@ export default {
478
481
  border: 1px solid rgb(220, 223, 230);
479
482
  vertical-align: super;
480
483
  height: 28px;
484
+ box-sizing: border-box;
481
485
  }
482
486
 
483
487
  .sync-help {
@@ -248,7 +248,7 @@ export default {
248
248
  return fetch(`${this.apiLocation}get-related-terms/${id}`)
249
249
  .then(response => response.json())
250
250
  .then(data => {
251
- if (data.uberon.array.length > 0) {
251
+ if (data.uberon?.array.length > 0) {
252
252
  name =
253
253
  data.uberon.array[0].name.charAt(0).toUpperCase() +
254
254
  data.uberon.array[0].name.slice(1);