diff --git a/packages/utils-eslint-config/CHANGELOG.md b/packages/utils-eslint-config/CHANGELOG.md index 7fb6018db..510b21e8e 100644 --- a/packages/utils-eslint-config/CHANGELOG.md +++ b/packages/utils-eslint-config/CHANGELOG.md @@ -2,6 +2,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +### [0.89.8](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.89.7...utils-eslint-config-0.89.8) (2024-03-07) + ### [0.89.7](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.89.6...utils-eslint-config-0.89.7) (2024-03-06) ### [0.89.6](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.89.5...utils-eslint-config-0.89.6) (2024-02-29) diff --git a/packages/utils-eslint-config/package.json b/packages/utils-eslint-config/package.json index acbbfd398..7ea3a808a 100644 --- a/packages/utils-eslint-config/package.json +++ b/packages/utils-eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@class101/eslint-config", - "version": "0.89.7", + "version": "0.89.8", "private": false, "sideEffects": false, "main": "src/index.js", diff --git a/packages/vibrant-components-web/CHANGELOG.md b/packages/vibrant-components-web/CHANGELOG.md index 33ead9d72..d595fd644 100644 --- a/packages/vibrant-components-web/CHANGELOG.md +++ b/packages/vibrant-components-web/CHANGELOG.md @@ -2,6 +2,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.92.7...vibrant-components-web-0.92.8) (2024-03-07) + ### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.92.6...vibrant-components-web-0.92.7) (2024-03-06) ### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.92.5...vibrant-components-web-0.92.6) (2024-02-29) diff --git a/packages/vibrant-components-web/package.json b/packages/vibrant-components-web/package.json index 53f8239b4..48fb1a429 100644 --- a/packages/vibrant-components-web/package.json +++ b/packages/vibrant-components-web/package.json @@ -1,6 +1,6 @@ { "name": "@vibrant-ui/components-web", - "version": "0.92.7", + "version": "0.92.8", "private": false, "sideEffects": false, "peerDependencies": { diff --git a/packages/vibrant-components/CHANGELOG.md b/packages/vibrant-components/CHANGELOG.md index e5f55234c..2eb5f6ae0 100644 --- a/packages/vibrant-components/CHANGELOG.md +++ b/packages/vibrant-components/CHANGELOG.md @@ -2,6 +2,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-components-0.92.7...vibrant-components-0.92.8) (2024-03-07) + ### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-components-0.92.6...vibrant-components-0.92.7) (2024-03-06) diff --git a/packages/vibrant-components/package.json b/packages/vibrant-components/package.json index dd27d5633..b8d3d40fd 100644 --- a/packages/vibrant-components/package.json +++ b/packages/vibrant-components/package.json @@ -1,6 +1,6 @@ { "name": "@vibrant-ui/components", - "version": "0.92.7", + "version": "0.92.8", "private": false, "sideEffects": false, "peerDependencies": { diff --git a/packages/vibrant-core/CHANGELOG.md b/packages/vibrant-core/CHANGELOG.md index 1c24f6d13..3d6abafbc 100644 --- a/packages/vibrant-core/CHANGELOG.md +++ b/packages/vibrant-core/CHANGELOG.md @@ -2,6 +2,13 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-core-0.92.7...vibrant-core-0.92.8) (2024-03-07) + + +### Bug Fixes + +* 이미지 key가 중복되는 문제를 해결한다 ([#946](https://github.com/pedaling/opensource/issues/946)) ([482d296](https://github.com/pedaling/opensource/commit/482d296606743433ce3db66299b7686e09c664de)) + ### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-core-0.92.6...vibrant-core-0.92.7) (2024-03-06) ### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-core-0.92.5...vibrant-core-0.92.6) (2024-02-29) diff --git a/packages/vibrant-core/package.json b/packages/vibrant-core/package.json index a92d89b60..c19c6be90 100644 --- a/packages/vibrant-core/package.json +++ b/packages/vibrant-core/package.json @@ -1,6 +1,6 @@ { "name": "@vibrant-ui/core", - "version": "0.92.7", + "version": "0.92.8", "private": false, "sideEffects": false, "react-native": "index.native", diff --git a/packages/vibrant-core/src/lib/Image/Image.tsx b/packages/vibrant-core/src/lib/Image/Image.tsx index c7ab11d66..8d837b8bf 100644 --- a/packages/vibrant-core/src/lib/Image/Image.tsx +++ b/packages/vibrant-core/src/lib/Image/Image.tsx @@ -21,9 +21,9 @@ export const Image = withImageVariation( if (ImageComponent) { return ( <> - {imageProps.map(({ src, display }) => ( + {imageProps.map(({ src, display }, index) => ( - {imageProps.map(({ src, display }) => ( + {imageProps.map(({ src, display }, index) => (