@abi-software/scaffoldvuer 0.1.58 → 0.1.59

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/scaffoldvuer",
3
- "version": "0.1.58",
3
+ "version": "0.1.59",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/App.vue CHANGED
@@ -646,4 +646,10 @@ body {
646
646
  .table-popover {
647
647
  opacity: 0.9;
648
648
  }
649
+
650
+ svg.map-icon {
651
+ color: $app-primary-color;
652
+ }
653
+
654
+
649
655
  </style>
@@ -14,12 +14,10 @@
14
14
  <div class="tree-container">
15
15
  <el-tree
16
16
  ref="regionTree"
17
- :default-expanded-keys="['__r/']"
18
17
  node-key="id"
19
18
  show-checkbox
20
19
  :check-strictly="false"
21
- :data="treeData"
22
- :default-checked-keys="['__r/']"
20
+ :data="treeData[0].children"
23
21
  :expand-on-click-node="false"
24
22
  :render-after-expand="false"
25
23
  @check="checkChanged"
@@ -309,6 +307,7 @@ export default {
309
307
  this.hover.group = "";
310
308
  this.hover.regionPath = undefined;
311
309
  this.$refs.regionTree.updateKeyChildren( "__r/", []);
310
+ this.treeData[0].children.length = 0;
312
311
  this.$emit("object-selected", undefined);
313
312
  },
314
313
  getColour: function (nodeData) {