eztech-core-components 1.0.18 → 1.0.20

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.
@@ -191,7 +191,9 @@ export default {
191
191
  skipFormReadonly: true
192
192
  })
193
193
  for (const configKey in config) {
194
- this[configKey] = config[configKey]
194
+ if (configKey !== 'rootApiId') {
195
+ this[configKey] = config[configKey]
196
+ }
195
197
  }
196
198
  this.$nextTick(() => {
197
199
  this.resetSearch()
@@ -32,8 +32,8 @@
32
32
  :src="image?.public_link || `/api/file/thumbnail/${image?._id}?tid=${image?.tid}`"
33
33
  >
34
34
  </div>
35
- <div v-if="images.length > 1" class="font-bold text-gray-500">
36
- +{{ images.length - 1 }}
35
+ <div v-if="images.length > 2" class="font-bold text-gray-500">
36
+ +{{ images.length - 2 }}
37
37
  </div>
38
38
  </div>
39
39
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eztech-core-components",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },