@abi-software/scaffoldvuer 1.4.0-beta.0 → 1.4.0-beta.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
|
@@ -163,8 +163,9 @@ export default {
|
|
|
163
163
|
Object.entries(this.imageThumbnails)
|
|
164
164
|
.filter(([key, value]) => value.length > 0)
|
|
165
165
|
.map(([key, value]) => [key.toLowerCase(), value])))
|
|
166
|
-
|
|
167
|
-
|
|
166
|
+
const lowerCaseLabel = this.label.toLowerCase()
|
|
167
|
+
if (lowerCaseLabel in imageThumbnailsEntries) {
|
|
168
|
+
imageEntries = imageThumbnailsEntries[lowerCaseLabel];
|
|
168
169
|
}
|
|
169
170
|
if (this.imageThumbnailSidebar) {
|
|
170
171
|
this.$emit('image-thumbnail-open', imageEntries)
|