@abi-software/map-utilities 1.8.0 → 1.8.1
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/map-utilities.js +1282 -1282
- package/dist/map-utilities.umd.cjs +5 -5
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/ConnectivityGraph/ConnectivityGraph.vue +1 -1
- package/src/components/ConnectivityList/ReconciliationTable.vue +2 -0
- package/src/components/Tooltip/CreateTooltipContent.vue +5 -3
package/package.json
CHANGED
|
@@ -506,7 +506,7 @@ export default {
|
|
|
506
506
|
loadPathData: async function (source) {
|
|
507
507
|
const data = await this.query(
|
|
508
508
|
`select entity, knowledge from knowledge
|
|
509
|
-
where entity like 'ilxtr:%' and source=?
|
|
509
|
+
where (entity like 'ilxtr:%' or entity like 'ilx:composer%') and source=?
|
|
510
510
|
order by entity`,
|
|
511
511
|
[source]);
|
|
512
512
|
const pathList = data ? data.values : [];
|
|
@@ -158,10 +158,11 @@ export default {
|
|
|
158
158
|
},
|
|
159
159
|
computed: {
|
|
160
160
|
canBeConfirmed: function() {
|
|
161
|
-
if (this.createData.
|
|
161
|
+
if (!this.createData.toBeDeleted &&
|
|
162
|
+
this.createData.editingIndex > -1) {
|
|
162
163
|
return true;
|
|
163
164
|
} else if (this.group) {
|
|
164
|
-
if (!this.renaming) {
|
|
165
|
+
if (!this.createData.renaming) {
|
|
165
166
|
return true;
|
|
166
167
|
} else if (this.group !== this.createData.tempGroupName) {
|
|
167
168
|
return true;
|
|
@@ -170,7 +171,8 @@ export default {
|
|
|
170
171
|
return false;
|
|
171
172
|
},
|
|
172
173
|
confirmText: function () {
|
|
173
|
-
if (this.createData.
|
|
174
|
+
if (!this.createData.toBeDeleted &&
|
|
175
|
+
this.createData.editingIndex > -1) {
|
|
174
176
|
return "Edit";
|
|
175
177
|
} else if (this.createData.renaming) {
|
|
176
178
|
return "Rename";
|