diff --git a/CHANGELOG.md b/CHANGELOG.md index da25b5cf31..b7d67b7020 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Fix `Popup` logic of handling `content` value provided as React element @kuzhelov ([#592](https://github.com/stardust-ui/react/pull/592)) - Do not handle `FocusZone`'s keyDownCapture in `chatBehavior` @sophieH29 ([#563](https://github.com/stardust-ui/react/pull/563)) - Fix `getKeyDownHandler` to pass props for client's onKeyDown handler @sophieH29 ([#595](https://github.com/stardust-ui/react/pull/595)) +- fix multiple React's warnings about keys in docs @layershifter ([#602](https://github.com/stardust-ui/react/pull/602)) ### Features - `Ref` components uses `forwardRef` API by default @layershifter ([#491](https://github.com/stardust-ui/react/pull/491)) diff --git a/docs/src/components/ComponentDoc/ComponentDocAccessibility.tsx b/docs/src/components/ComponentDoc/ComponentDocAccessibility.tsx index 61894fb183..f5c013c99f 100644 --- a/docs/src/components/ComponentDoc/ComponentDocAccessibility.tsx +++ b/docs/src/components/ComponentDoc/ComponentDocAccessibility.tsx @@ -37,11 +37,11 @@ const ComponentDocAccessibility = ({ info }) => {

Available behaviors:{' '} {info.behaviors.map(behavior => ( - <> + {behavior.displayName} {' '} - + ))}

)} diff --git a/docs/src/routes.tsx b/docs/src/routes.tsx index e4517d1cc2..e1060aaa85 100644 --- a/docs/src/routes.tsx +++ b/docs/src/routes.tsx @@ -62,6 +62,7 @@ const Router = () => ( />, ,