@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/map-utilities",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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 : [];
@@ -166,6 +166,8 @@ export default {
166
166
 
167
167
  .reconciliation-table-inner {
168
168
  width: 100%;
169
+ padding: 0;
170
+ border: 0 none;
169
171
  border-collapse: separate;
170
172
  border-spacing: 0;
171
173
  table-layout: fixed;
@@ -158,10 +158,11 @@ export default {
158
158
  },
159
159
  computed: {
160
160
  canBeConfirmed: function() {
161
- if (this.createData.editingIndex > -1) {
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.editingIndex > -1) {
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";